mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -07:00
Merge pull request #7964 from Chocobo1/typeError
[WebUI] Fix logout behavior
This commit is contained in:
commit
2124ef261a
2 changed files with 4 additions and 2 deletions
|
@ -280,7 +280,9 @@ window.addEvent('load', function () {
|
||||||
noCache : true,
|
noCache : true,
|
||||||
method : 'get',
|
method : 'get',
|
||||||
onFailure : function () {
|
onFailure : function () {
|
||||||
$('error_div').set('html', 'QBT_TR(qBittorrent client is not reachable)QBT_TR[CONTEXT=HttpServer]');
|
var errorDiv = $('error_div');
|
||||||
|
if (errorDiv)
|
||||||
|
errorDiv.set('html', 'QBT_TR(qBittorrent client is not reachable)QBT_TR[CONTEXT=HttpServer]');
|
||||||
clearTimeout(syncMainDataTimer);
|
clearTimeout(syncMainDataTimer);
|
||||||
syncMainDataTimer = syncMainData.delay(2000);
|
syncMainDataTimer = syncMainData.delay(2000);
|
||||||
},
|
},
|
||||||
|
|
|
@ -612,7 +612,7 @@ initializeWindows = function() {
|
||||||
new Event(e).stop();
|
new Event(e).stop();
|
||||||
new Request({
|
new Request({
|
||||||
url: 'logout',
|
url: 'logout',
|
||||||
method: 'get',
|
method: 'post',
|
||||||
onSuccess: function() {
|
onSuccess: function() {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue