Merge pull request #169 from ajayyy/experimental-ajay

Decreased requests to help with server load issues
This commit is contained in:
Ajay Ramachandran
2019-11-14 15:05:57 -05:00
committed by GitHub
3 changed files with 6 additions and 4 deletions

View File

@@ -100,7 +100,7 @@
"message": "Sponsorship Ends Now" "message": "Sponsorship Ends Now"
}, },
"noVideoID": { "noVideoID": {
"message": "This probably isn't a YouTube tab, or you clicked too early. \n If you know this is a YouTube tab,\n close this popup and open it again." "message": "This probably isn't a YouTube tab, or you clicked too early. \n If you know this is a YouTube tab,\n close this popup and open it again.\n\nYou must refresh your YouTube tab after installing or updating (even auto-update) the extension."
}, },
"success": { "success": {
"message": "Success!" "message": "Success!"

View File

@@ -420,7 +420,8 @@ function sponsorsLookup(id, channelIDPromise) {
//if less than 3 days old //if less than 3 days old
if ((Date.now() / 1000) - unixTimePublished < 259200) { if ((Date.now() / 1000) - unixTimePublished < 259200) {
setTimeout(() => sponsorsLookup(id), 10000); //TODO lower when server becomes better
setTimeout(() => sponsorsLookup(id), 180000);
} }
} }
}); });
@@ -429,8 +430,9 @@ function sponsorsLookup(id, channelIDPromise) {
} else if (xmlhttp.readyState == 4 && sponsorLookupRetries < 90 && !recheckStarted) { } else if (xmlhttp.readyState == 4 && sponsorLookupRetries < 90 && !recheckStarted) {
recheckStarted = true; recheckStarted = true;
//TODO lower when server becomes better (back to 1 second)
//some error occurred, try again in a second //some error occurred, try again in a second
setTimeout(() => sponsorsLookup(id), 1000); setTimeout(() => sponsorsLookup(id), 10000);
sponsorLookupRetries++; sponsorLookupRetries++;
} }

View File

@@ -1,7 +1,7 @@
{ {
"name": "__MSG_fullName__", "name": "__MSG_fullName__",
"short_name": "__MSG_Name__", "short_name": "__MSG_Name__",
"version": "1.1.9.2", "version": "1.1.9.3",
"default_locale": "en", "default_locale": "en",
"description": "__MSG_Description__", "description": "__MSG_Description__",
"content_scripts": [ "content_scripts": [