This commit is contained in:
tzugen 2021-05-09 18:31:54 +02:00
parent e0eb2aaf61
commit 6c122b9e80
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 2 additions and 1 deletions

View File

@ -124,7 +124,8 @@ public class NowPlayingFragment extends Fragment {
}
bundle.putString(Constants.INTENT_EXTRA_NAME_NAME, song.getAlbum());
Navigation.findNavController(getView()).navigate(R.id.selectAlbumFragment, bundle);
bundle.putString(Constants.INTENT_EXTRA_NAME_NAME, song.getAlbum());
Navigation.findNavController(getActivity(), R.id.nav_host_fragment).navigate(R.id.selectAlbumFragment, bundle);
});
}