Skip to content
Snippets Groups Projects
Commit 9ee7321c authored by Phil Höfer's avatar Phil Höfer
Browse files

Update checkTokenStash to allow checking without refilling

parent 79644864
No related branches found
No related tags found
No related merge requests found
......@@ -149,10 +149,11 @@ function getTargetStashSize() {
}
/**
* Checks token stash and refills if possible
* Checks token stash and tries to refill if refill is set to true
* @param {boolean} refill
* @returns {boolean} True if stash now holds at least as many tokens as the current tokensPerSearch value.
*/
async function checkTokenStash() {
async function checkTokenStash(refill) {
console.log("checking token stash");
let {
tokenStash: currentStash,
......@@ -169,7 +170,7 @@ async function checkTokenStash() {
let targetStashSize = getTargetStashSize();
if (currentStash > refillThresholdSize) {
return true;
} else if (activeKey) {
} else if (refill && activeKey) {
return await refillTokenStash(targetStashSize - currentStash.length);
} else {
return false;
......@@ -177,10 +178,6 @@ async function checkTokenStash() {
}
setTimeout(checkTokenStash,10000);
function tokensAvailable() {
return storageGlobal.tokenStash && storageGlobal.tokenStash.length>=tokensPerSearch;
}
function popTokens(count) {
let tokens = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment