Skip to content

Commit

Permalink
Merge pull request jitsi#1995 from jitsi/fix-local-thumbnail
Browse files Browse the repository at this point in the history
fix(Filmstrip.js): Make sure the local thumbnail is there
  • Loading branch information
virtuacoplenny authored Sep 19, 2017
2 parents bd24135 + 0c08f96 commit 04a1da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/UI/videolayout/Filmstrip.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ const Filmstrip = {

promises.push(new Promise(() => {
let { localThumb } = this.getThumbs();
let height = localThumb.height();
let height = localThumb ? localThumb.height() : 0;
let fontSize = UIUtil.getIndicatorFontSize(height);
this.filmstrip.find('.indicator').animate({
fontSize
Expand Down

0 comments on commit 04a1da2

Please sign in to comment.