Merge pull request #2975 from praveenrajput/master

Crash fix on playlist background playback
This commit is contained in:
Bnyro 2023-02-05 20:54:48 +01:00 committed by GitHub
commit c75f1dcb85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,12 +57,7 @@ class PlaylistOptionsBottomSheet(
// play the playlist in the background
getString(R.string.playOnBackground) -> {
runBlocking {
val playlist =
if (playlistType == PlaylistType.PRIVATE) {
RetrofitInstance.authApi.getPlaylist(playlistId)
} else {
RetrofitInstance.api.getPlaylist(playlistId)
}
val playlist = PlaylistsHelper.getPlaylist(playlistId)
BackgroundHelper.playOnBackground(
context = requireContext(),
videoId = playlist.relatedStreams[0].url!!.toID(),