1
0
Fork 1
mirror of https://codeberg.org/tom79/Fedilab.git synced 2025-04-06 07:00:01 +03:00

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

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);