Logout takes you to the front page instead of leaving you on your user activity page

This commit is contained in:
Neil Lalonde 2013-08-06 16:04:02 -04:00
parent 879aa06601
commit 57baf1f112

View File

@ -158,7 +158,7 @@ Discourse = Ember.Application.createWithMixins(Discourse.Ajax, {
Discourse.User.logout().then(function() {
// Reloading will refresh unbound properties
Discourse.KeyValueStore.abandonLocal();
window.location.reload();
window.location.pathname = Discourse.getURL('/');
});
},