Check for the correct media id when ensuring the MediaPlayer is ready (#1783)

Just forgot to add this further condition.
This commit is contained in:
Marco Romano 2023-11-10 10:45:29 +01:00 committed by GitHub
parent 14be887cac
commit 2f51919670
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ class MediaPlayerImpl @Inject constructor(
)
player.prepare()
// Will throw TimeoutCancellationException if the player is not ready after 1 second.
return state.timeout(1.seconds).first { it.isReady }
return state.timeout(1.seconds).first { it.isReady && it.mediaId == mediaId }
}
override fun play() {