We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 587df09 commit 599d861Copy full SHA for 599d861
1 file changed
app/src/main/java/org/schabi/newpipe/local/playlist/ExportPlaylist.kt
@@ -50,7 +50,7 @@ fun exportAsYoutubeTempPlaylist(playlist: List<PlaylistStreamEntry>): String {
50
val videoIDs = playlist.asReversed().asSequence()
51
.map { it.streamEntity.url }
52
.mapNotNull(::getYouTubeId)
53
- .take(50) // YouTube limitation: temp playlists can't have more than 50 items
+ .take(50) // YouTube limitation: temp playlists can't have more than 50 items
54
.toList()
55
.asReversed()
56
.joinToString(separator = ",")
0 commit comments