Dismiss Voice Note player notification upon completion.

This commit is contained in:
Nicholas Tinsley
2023-08-30 17:05:10 -04:00
parent e08e02ae80
commit 4d7a0a361f

View File

@@ -124,6 +124,9 @@ public class VoiceNotePlaybackService extends MediaSessionService {
sendViewedReceiptForCurrentWindowIndex();
}
break;
case Player.STATE_ENDED:
player.clearMediaItems();
break;
default:
}
}