1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-28 08:03:20 +00:00

more NPE fix

This commit is contained in:
Ritvik Saraf 2018-12-25 20:17:56 +05:30
parent 646698f1ed
commit 559c397b2f

View File

@ -198,7 +198,7 @@ public class RelatedVideosFragment extends BaseListInfoFragment<RelatedStreamInf
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String s) {
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(getContext());
Boolean autoplay = pref.getBoolean(getString(R.string.auto_queue_key), false);
aSwitch.setChecked(autoplay);
if(null != aSwitch) aSwitch.setChecked(autoplay);
}
@Override