Raised retry time from 10 seconds to 180 seconds (3 mins).

This commit is contained in:
Ajay Ramachandran
2019-11-14 14:53:40 -05:00
parent a3214f0fa7
commit 9267f36165

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);
}
}
});