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