diff --git a/src/js/player.js b/src/js/player.js index ac4b0e8..5bac4d2 100644 --- a/src/js/player.js +++ b/src/js/player.js @@ -436,6 +436,10 @@ class DPlayer { // video download error: an error occurs this.on('error', () => { + // Not a video load error, may be poster load failed, see #307 + if (!this.video.error) { + return + } this.tran && this.notice && this.type !== 'webtorrent' & this.notice(this.tran('Video load failed'), -1); });