Jelajahi Sumber

Merge pull request #314 from sdvcrx/fix-infinity-duration

fix video.duration is Infinity
DIYgod 7 tahun lalu
induk
melakukan
3744579a41
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      src/js/player.js

+ 2 - 1
src/js/player.js

@@ -422,7 +422,8 @@ class DPlayer {
          */
         // show video time: the metadata has loaded or changed
         this.on('durationchange', () => {
-            if (video.duration !== 1) {           // compatibility: Android browsers will output 1 at first
+            // compatibility: Android browsers will output 1 or Infinity at first
+            if (video.duration !== 1 && video.duration !== Infinity) {
                 this.template.dtime.innerHTML = utils.secondToTime(video.duration);
             }
         });