Skip to content

Commit

Permalink
fix(SUP-40028): The playlist player freezes during the playback
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzipi-kaltura committed Nov 13, 2023
1 parent 9ce2b0e commit 5f892b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ export default class Player extends FakeEventTarget {
getThumbnail(time: number): ?ThumbnailInfo {
if (this._externalThumbnailsHandler.isUsingVttThumbnails()) {
return this._externalThumbnailsHandler.getThumbnail(time);
} else if (this._engine) {
} else if (this._engine && typeof this._engine.getThumbnail === 'function') {
return this._engine.getThumbnail(time);
}
return null;
Expand Down

0 comments on commit 5f892b7

Please sign in to comment.