Merge branch 'master' into menu
This commit is contained in:
commit
61b2d2e684
@ -2803,6 +2803,14 @@
|
|||||||
QR.abort();
|
QR.abort();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (this.status !== 200 && this.status !== 304) {
|
||||||
|
Updater.retryCoef += 10 * (Updater.retryCoef < 120);
|
||||||
|
if (Conf['Verbose']) {
|
||||||
|
Updater.count.textContent = this.statusText;
|
||||||
|
Updater.count.className = 'warning';
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
Updater.retryCoef = 10;
|
Updater.retryCoef = 10;
|
||||||
Updater.timer.textContent = "-" + Conf['Interval'];
|
Updater.timer.textContent = "-" + Conf['Interval'];
|
||||||
/*
|
/*
|
||||||
|
|||||||
@ -2208,6 +2208,12 @@ Updater =
|
|||||||
Unread.update true
|
Unread.update true
|
||||||
QR.abort()
|
QR.abort()
|
||||||
return
|
return
|
||||||
|
if @status isnt 200 and @status isnt 304
|
||||||
|
Updater.retryCoef += 10 * (Updater.retryCoef < 120)
|
||||||
|
if Conf['Verbose']
|
||||||
|
Updater.count.textContent = @statusText
|
||||||
|
Updater.count.className = 'warning'
|
||||||
|
return
|
||||||
|
|
||||||
Updater.retryCoef = 10
|
Updater.retryCoef = 10
|
||||||
Updater.timer.textContent = "-#{Conf['Interval']}"
|
Updater.timer.textContent = "-#{Conf['Interval']}"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user