From 9076d054b93c2d0837ad37dcc3aab5eccd3d335f Mon Sep 17 00:00:00 2001 From: Danielh112 Date: Fri, 14 Aug 2020 10:34:48 +0100 Subject: Fix for Slow loading videos not autoplaying --- src/js/plyr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/js/plyr.js b/src/js/plyr.js index 94bd819c..3373be14 100644 --- a/src/js/plyr.js +++ b/src/js/plyr.js @@ -308,7 +308,7 @@ class Plyr { // Autoplay if required if (this.isHTML5 && this.config.autoplay) { - this.on('canplay', () => silencePromise(this.play())); + this.once('canplay', () => silencePromise(this.play())); } // Seek time will be recorded (in listeners.js) so we can prevent hiding controls for a few seconds after seek -- cgit v1.2.3