mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
clear the cookie rather than setting it to false
This commit is contained in:
parent
e837493757
commit
204f055c7e
1 changed files with 3 additions and 3 deletions
|
@ -114,7 +114,7 @@ Copyright:
|
|||
if (session) {
|
||||
Deluge.Client.web.delete_session(session, {
|
||||
success: function(result) {
|
||||
Deluge.UI.cookies.set("session", false);
|
||||
Deluge.UI.cookies.clear("session");
|
||||
this.show();
|
||||
},
|
||||
scope: this
|
||||
|
@ -132,12 +132,12 @@ Copyright:
|
|||
this.loginForm.items.get('password').setRawValue('');
|
||||
this.hide();
|
||||
} else {
|
||||
Deluge.UI.cookies.set("session", false);
|
||||
Deluge.UI.cookies.clear("session");
|
||||
this.show();
|
||||
}
|
||||
},
|
||||
failure: function(result) {
|
||||
Deluge.UI.cookies.set("session", false);
|
||||
Deluge.UI.cookies.clear("session");
|
||||
this.show();
|
||||
},
|
||||
scope: this
|
||||
|
|
Loading…
Add table
Reference in a new issue