Skip to content

Commit

Permalink
Merge pull request #4310 from kaltura/SUP-37284
Browse files Browse the repository at this point in the history
fix(SUP-37284): v2 player - Empty Playlist no longer says no videos found
  • Loading branch information
inbalvasserman authored May 31, 2023
2 parents 3058f6f + 828a296 commit c2d9f3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/KalturaSupport/resources/mw.KWidgetSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,11 @@ mw.KWidgetSupport.prototype = {
} else {
deferred.resolve();
}
}
else {
} else {
deferred.resolve();
}
} else {
deferred.resolve();
}
return deferred.promise();
},
Expand Down

0 comments on commit c2d9f3c

Please sign in to comment.