Fix random NullPointerException in PlaylistFragment
This commit is contained in:
parent
9f4fd09cfc
commit
858361f0bb
1 changed files with 3 additions and 1 deletions
|
|
@ -423,7 +423,9 @@ public class PlaylistFragment extends BaseListInfoFragment<PlaylistInfo> {
|
||||||
@Override
|
@Override
|
||||||
public void setTitle(final String title) {
|
public void setTitle(final String title) {
|
||||||
super.setTitle(title);
|
super.setTitle(title);
|
||||||
headerBinding.playlistTitleView.setText(title);
|
if (headerBinding != null) {
|
||||||
|
headerBinding.playlistTitleView.setText(title);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onBookmarkClicked() {
|
private void onBookmarkClicked() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue