Merge pull request #7964 from Chocobo1/typeError

[WebUI] Fix logout behavior
This commit is contained in:
sledgehammer999 2017-12-02 14:23:38 +02:00 committed by GitHub
commit 2124ef261a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -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);
}, },

View file

@ -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();
} }