FIX: Do not set null value to remove cookie
This commit is contained in:
parent
19d7543004
commit
e3c6dd26c4
|
@ -327,7 +327,7 @@ export default Ember.Controller.extend(ModalFunctionality, {
|
||||||
$.cookie("destination_url") || options.destination_url;
|
$.cookie("destination_url") || options.destination_url;
|
||||||
if (destinationUrl) {
|
if (destinationUrl) {
|
||||||
// redirect client to the original URL
|
// redirect client to the original URL
|
||||||
$.cookie("destination_url", null);
|
$.removeCookie("destination_url");
|
||||||
window.location.href = destinationUrl;
|
window.location.href = destinationUrl;
|
||||||
} else if (window.location.pathname === Discourse.getURL("/login")) {
|
} else if (window.location.pathname === Discourse.getURL("/login")) {
|
||||||
window.location.pathname = Discourse.getURL("/");
|
window.location.pathname = Discourse.getURL("/");
|
||||||
|
|
Loading…
Reference in New Issue