Fix a crash with null media URLs

This commit is contained in:
Thomas 2023-03-11 09:33:46 +01:00
parent da67ec0e03
commit bc27445103
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class FragmentMedia extends Fragment {
}
private void loadVideo(String url, String type) {
if (binding == null || !isAdded() || getActivity() == null) {
if (binding == null || !isAdded() || getActivity() == null || url == null) {
return;
}
binding.pbarInf.setIndeterminate(false);