1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-29 17:07:55 +00:00

Merge pull request #3345 from mitosagi/error-with-bookmarks

Fix repeated exceptions in Bookmarked Playlists
This commit is contained in:
Tobias Groza
2020-04-19 22:00:31 +02:00
committed by GitHub

View File

@@ -62,8 +62,19 @@ public final class BookmarkFragment extends BaseLocalListFragment<List<PlaylistL
items.addAll(localPlaylists); items.addAll(localPlaylists);
items.addAll(remotePlaylists); items.addAll(remotePlaylists);
Collections.sort(items, (left, right) -> Collections.sort(items, (left, right) -> {
left.getOrderingName().compareToIgnoreCase(right.getOrderingName())); String on1 = left.getOrderingName();
String on2 = right.getOrderingName();
if (on1 == null && on2 == null) {
return 0;
} else if (on1 != null && on2 == null) {
return -1;
} else if (on1 == null && on2 != null) {
return 1;
} else {
return on1.compareToIgnoreCase(on2);
}
});
return items; return items;
} }