Fix a crash with media

This commit is contained in:
Thomas 2024-02-22 07:42:31 +01:00
parent 2f11eaf315
commit 13946fe56e
1 changed files with 3 additions and 0 deletions

View File

@ -210,6 +210,9 @@ public class FragmentMedia extends Fragment {
@Override
public void onLoadFailed(@Nullable Drawable errorDrawable) {
if (binding == null || !isAdded() || getActivity() == null) {
return;
}
scheduleStartPostponedTransition(binding.mediaPicture);
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
boolean autofetch = sharedpreferences.getBoolean(getString(R.string.SET_FETCH_REMOTE_MEDIA), false);