Skip to content

Commit

Permalink
fix(YouTube - Overlay buttons): Play all button did not work for all …
Browse files Browse the repository at this point in the history
…videos when using all content by time ascending
  • Loading branch information
anddea committed Dec 12, 2024
1 parent 163fc3d commit e4e51f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static void openVideo(@NonNull String videoScheme, @NonNull String prefix
return;
}
if (prefixId.equals("UL")) {
videoScheme += "&list=" + prefixId + channelId.substring(0, 11);
videoScheme += "&list=" + prefixId + VideoInformation.getVideoId();
}
else {
videoScheme += "&list=" + prefixId + channelId.substring(2);
Expand Down

0 comments on commit e4e51f5

Please sign in to comment.