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
commit fe74f7caa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -100,7 +100,7 @@
"message": "Sponsorship Ends Now"
},
"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": {
"message": "Success!"

View file

@ -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);
}
}
});
@ -429,8 +430,9 @@ function sponsorsLookup(id, channelIDPromise) {
} else if (xmlhttp.readyState == 4 && sponsorLookupRetries < 90 && !recheckStarted) {
recheckStarted = true;
//TODO lower when server becomes better (back to 1 second)
//some error occurred, try again in a second
setTimeout(() => sponsorsLookup(id), 1000);
setTimeout(() => sponsorsLookup(id), 10000);
sponsorLookupRetries++;
}

View file

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