We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a487b commit e99acecCopy full SHA for e99acec
background/util.js
@@ -52,7 +52,7 @@ export const ajax = (url, opts = {}) => {
52
cache = ajax.cache[parsed.host];
53
cacheRequestKey = parsed.pathname + parsed.search;
54
if (cache.has(cacheRequestKey)) {
55
- ajax.next();
+ setTimeout(ajax.next);
56
return cache.get(cacheRequestKey);
57
} else {
58
const req = request(url, opts);
0 commit comments