Fix #136 - crash with download button and lives
This commit is contained in:
parent
85ffb4064b
commit
76a4aa5ae6
|
@ -282,7 +282,7 @@ public class VideoData {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return files.get(0).getFileDownloadUrl();
|
return files != null && files.size() > 0 ? files.get(0).getFileDownloadUrl() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Account getAccount() {
|
public Account getAccount() {
|
||||||
|
|
Loading…
Reference in New Issue