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 8d9af62 commit 817fccbCopy full SHA for 817fccb
1 file changed
app/src/main/java/org/schabi/newpipe/local/playlist/LocalPlaylistFragment.java
@@ -457,8 +457,8 @@ public void removeWatchedStreams(final boolean removePartiallyWatched) {
457
// if the stream was played for less than 5 seconds, see
458
// StreamStateEntity#PLAYBACK_SAVE_THRESHOLD_START_MILLISECONDS
459
|| streamStateEntity == null
460
- || (!streamStateEntity.isFinished(duration)
461
- && !removePartiallyWatched)) {
+ || (!removePartiallyWatched
+ && !streamStateEntity.isFinished(duration))) {
462
itemsToKeep.add(playlistItem);
463
} else if (!isThumbnailPermanent && !thumbnailVideoRemoved
464
&& playlistManager.getPlaylistThumbnailStreamId(playlistId)
0 commit comments