From 1e21920e7e01d94923e0b908bcc5057278feb504 Mon Sep 17 00:00:00 2001 From: voltarinou Date: Sat, 6 Jun 2026 01:02:27 +0200 Subject: [PATCH] fix: the segments of the seekbar are now updated when changing video the segments of the seekbar are now updated whenever the current metadata changes (like for example when changing the video played) this change fixes https://github.com/InfinityLoop1308/PipePipe/issues/2397 --- app/src/main/java/org/schabi/newpipe/player/Player.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/org/schabi/newpipe/player/Player.java b/app/src/main/java/org/schabi/newpipe/player/Player.java index 23e803fee..90f8917d6 100644 --- a/app/src/main/java/org/schabi/newpipe/player/Player.java +++ b/app/src/main/java/org/schabi/newpipe/player/Player.java @@ -3559,6 +3559,8 @@ private void onMetadataChanged(@NonNull final StreamInfo info) { closeItemsList(); } } + + onMarkSeekbarRequested(info); } private void updateMetadataWith(@NonNull final StreamInfo streamInfo) {