diff options
author | Ajay Ramachandran <[email protected]> | 2019-11-14 14:53:40 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2019-11-14 14:53:40 -0500 |
commit | 9267f361652b48ddf271e3b15d8f63ec08a0a363 (patch) | |
tree | 125252231245799820a630b3808753ccbcd6c461 | |
parent | a3214f0fa744a9f45cb7fa7efc423768e096aed1 (diff) | |
download | SponsorBlock-9267f361652b48ddf271e3b15d8f63ec08a0a363.tar.gz SponsorBlock-9267f361652b48ddf271e3b15d8f63ec08a0a363.zip |
Raised retry time from 10 seconds to 180 seconds (3 mins).
-rw-r--r-- | content.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -420,7 +420,8 @@ function sponsorsLookup(id, channelIDPromise) { //if less than 3 days old if ((Date.now() / 1000) - unixTimePublished < 259200) { - setTimeout(() => sponsorsLookup(id), 10000); + //TODO lower when server becomes better + setTimeout(() => sponsorsLookup(id), 180000); } } }); |