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 135fc08 commit e26c038Copy full SHA for e26c038
1 file changed
app/src/main/java/org/schabi/newpipe/local/playlist/LocalPlaylistFragment.java
@@ -643,15 +643,9 @@ private void removeDuplicatesInPlaylist() {
643
644
itemListAdapter.clearStreamItemList();
645
itemListAdapter.addItems(itemsToKeep);
646
- saveChanges();
+ setVideoCount(itemListAdapter.getItemsList().size());
647
648
- final long videoCount = itemListAdapter.getItemsList().size();
649
- setVideoCount(videoCount);
650
- if (videoCount == 0) {
651
- showEmptyState();
652
- }
653
- //TODO: Do we have to show loading?
654
- //hideLoading();
+ saveChanges();
655
}
656
657
private void deleteItem(final PlaylistStreamEntry item) {
0 commit comments