Skip to content

Commit

Permalink
Remove old playlist fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
Isira-Seneviratne committed Jul 13, 2024
1 parent 88d38a7 commit 64bdabb
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 544 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/org/schabi/newpipe/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ private void handleIntent(final Intent intent) {
break;
case PLAYLIST:
NavigationHelper.openPlaylistFragment(getSupportFragmentManager(),
serviceId, url, title);
serviceId, url);
break;
}
} else if (intent.hasExtra(Constants.KEY_OPEN_SEARCH)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public void held(final StreamInfoItem selectedItem) {
try {
onItemSelected(selectedItem);
NavigationHelper.openPlaylistFragment(getFM(), selectedItem.getServiceId(),
selectedItem.getUrl(), selectedItem.getName());
selectedItem.getUrl());
} catch (final Exception e) {
ErrorUtil.showUiErrorSnackbar(this, "Opening playlist fragment", e);
}
Expand Down
Loading

0 comments on commit 64bdabb

Please sign in to comment.