mirror of
https://github.com/wassname/keywordshitter2.git
synced 2026-06-27 16:10:23 +08:00
No rate limit for cached results
This commit is contained in:
+9
-1
@@ -159,8 +159,13 @@ function DoJob() {
|
||||
var currentKw = keywordsToQuery[keywordsToQueryIndex];
|
||||
if (currentKw[currentKw.length - 1] != '✓') {
|
||||
QueryKeyword(currentKw);
|
||||
keywordsToQueryIndex++;
|
||||
} else {
|
||||
// we didn't do a query immediatly go to next query
|
||||
keywordsToQueryIndex++;
|
||||
DoJob();
|
||||
}
|
||||
keywordsToQueryIndex++;
|
||||
|
||||
} else {
|
||||
if (numOfInitialKeywords != keywordsToQuery.length) {
|
||||
doWork = false;
|
||||
@@ -331,6 +336,9 @@ function QueryKeyword(search) {
|
||||
markAsDone(search);
|
||||
permuteResultsToQueue(retList);
|
||||
queryLock = false;
|
||||
|
||||
// we didn't do a query immediatly go to next query
|
||||
DoJob();
|
||||
}
|
||||
else {
|
||||
// search not done, lets do the query
|
||||
|
||||
Reference in New Issue
Block a user