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 01d996a commit c2762d3Copy full SHA for c2762d3
1 file changed
app/src/main/java/org/schabi/newpipe/local/playlist/LocalPlaylistFragment.java
@@ -420,7 +420,8 @@ public void removeWatchedStreams(final boolean removePartiallyWatched) {
420
playlistItem.getStreamId());
421
final StreamStateEntity streamStateEntity = streamStatesIter.next();
422
final long duration = playlistItem.toStreamInfoItem().getDuration();
423
- if (indexInHistory < 0 || (streamStateEntity != null && !streamStateEntity.isFinished(duration))) {
+ if (indexInHistory < 0 || (streamStateEntity != null
424
+ && !streamStateEntity.isFinished(duration))) {
425
notWatchedItems.add(playlistItem);
426
} else if (!thumbnailVideoRemoved
427
&& playlistManager.getPlaylistThumbnail(playlistId)
0 commit comments