Skip to content

Commit

Permalink
fix(fec-13670): address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
semarche-kaltura committed Jan 30, 2024
1 parent 54fcc17 commit 9aecb2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc-player-engine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class DocumentPlayerEngine extends FakeEventTarget implements IEngine {
this.onImageLoaded();
};
this.el.onerror = (error): void => {
DocumentPlayerEngine._logger.error(`The document thumbnail failed to load, url:${this.source.thumbnailUrl}`, error);
DocumentPlayerEngine._logger.error(`The document thumbnail failed to load, url:${this.source?.thumbnailUrl}`, error);
reject(error);
};
this.dispatchEvent(new FakeEvent(EventType.LOAD_START));
Expand Down

0 comments on commit 9aecb2e

Please sign in to comment.