去掉获取热门书签的busy判断
This commit is contained in:
parent
715f7029f0
commit
9bebbb40fc
|
|
@ -1114,7 +1114,7 @@ api.getHotBookmarksByTimer = function() {
|
||||||
console.log('getHotBookmarks is busy')
|
console.log('getHotBookmarks is busy')
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(timeout >= 1000 * 60 * 5){
|
if(timeout < 1000 * 5){
|
||||||
busy = true; // 实践证明很容易出错导致busy一直是true,所以干脆去掉此选项了。
|
busy = true; // 实践证明很容易出错导致busy一直是true,所以干脆去掉此选项了。
|
||||||
}
|
}
|
||||||
console.log('begin getHotBookmarks...');
|
console.log('begin getHotBookmarks...');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue