1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-12-23 16:40:32 +00:00

Fix channel subscribe button causing crash in main page tab

The binding was being set to null on onDestroyView() instead of in onDestroy()
This commit is contained in:
Stypox 2021-01-20 11:42:24 +01:00
parent 9a65f02d5b
commit 327fc742d3
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -131,14 +131,9 @@ public class ChannelFragment extends BaseListInfoFragment<ChannelInfo>
if (subscribeButtonMonitor != null) { if (subscribeButtonMonitor != null) {
subscribeButtonMonitor.dispose(); subscribeButtonMonitor.dispose();
} }
}
@Override
public void onDestroyView() {
channelBinding = null; channelBinding = null;
headerBinding = null; headerBinding = null;
playlistControlBinding = null; playlistControlBinding = null;
super.onDestroyView();
} }
/*////////////////////////////////////////////////////////////////////////// /*//////////////////////////////////////////////////////////////////////////