Only proceed with subtitles loading when the list of subs is not empty

This commit is contained in:
Fabio Manganiello 2019-02-17 16:29:39 +01:00
parent 4076cd3518
commit a21a11d499
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ $(document).ready(function() {
if (subtitlesConf) {
populateSubtitlesModal(resource).then((subs) => {
if ('language' in subtitlesConf) {
if (subs) {
if (subs && sub.length) {
downloadSubtitles(subs[0].SubDownloadLink, resource).then((subtitles) => {
_play(resource, subtitles).finally(onVideoReady);
resolve(resource, subtitles);
@ -398,7 +398,7 @@ $(document).ready(function() {
$mediaSubtitlesResultsContainer.hide();
getSubtitles(resource).then((subs) => {
if (!subs) {
if (!subs || !subs.length) {
$mediaSubtitlesMessage.text('No subtitles found');
resolve();
}