Skip to content

Commit 59d8c57

Browse files
authored
Readd spaces
1 parent c2762d3 commit 59d8c57

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

app/src/main/java/org/schabi/newpipe/local/playlist/LocalPlaylistFragment.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,12 +414,14 @@ public void removeWatchedStreams(final boolean removePartiallyWatched) {
414414
} else {
415415
final Iterator<StreamStateEntity> streamStatesIter = recordManager
416416
.loadLocalStreamStateBatch(playlist).blockingGet().iterator();
417+
417418
while (playlistIter.hasNext()) {
418419
final PlaylistStreamEntry playlistItem = playlistIter.next();
419420
final int indexInHistory = Collections.binarySearch(historyStreamIds,
420421
playlistItem.getStreamId());
421422
final StreamStateEntity streamStateEntity = streamStatesIter.next();
422423
final long duration = playlistItem.toStreamInfoItem().getDuration();
424+
423425
if (indexInHistory < 0 || (streamStateEntity != null
424426
&& !streamStateEntity.isFinished(duration))) {
425427
notWatchedItems.add(playlistItem);

0 commit comments

Comments
 (0)