clear the cookie rather than setting it to false

This commit is contained in:
Damien Churchill 2009-04-27 13:56:53 +00:00
parent e837493757
commit 204f055c7e
1 changed files with 3 additions and 3 deletions

View File

@ -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