From 704b3b42c5de9e74bf3947ddfc757841b1b0a560 Mon Sep 17 00:00:00 2001 From: Can Arslan Date: Sun, 25 Jun 2017 22:15:51 +0300 Subject: [PATCH] Not updating speed correctly #214 (#220) I tested for several times with/without throttling in different videos and nothing effected/no console error and fixed issue. --- inject.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/inject.js b/inject.js index 5c8e699..549f86d 100644 --- a/inject.js +++ b/inject.js @@ -65,9 +65,6 @@ chrome.extension.sendMessage({}, function(response) { }); target.addEventListener('ratechange', function(event) { - if (target.readyState === 0) { - return; - } var speed = this.getSpeed(); this.speedIndicator.textContent = speed; tc.settings.speed = speed;