summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-09-25 09:16:26 -0700
committer=Corey Hulen <corey@hulen.com>2015-09-25 09:16:26 -0700
commitad346f8734f5419067c4988f118281955516a356 (patch)
tree4e1df5f440829f0240d0450fb28a314f42e85fcb /web/react/utils/utils.jsx
parentab7b36089cbe781273fbfc15341b5276c8b3e34b (diff)
downloadchat-ad346f8734f5419067c4988f118281955516a356.tar.gz
chat-ad346f8734f5419067c4988f118281955516a356.tar.bz2
chat-ad346f8734f5419067c4988f118281955516a356.zip
fixing more redirect places
Diffstat (limited to 'web/react/utils/utils.jsx')
-rw-r--r--web/react/utils/utils.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 6688436de..4b1b37397 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -4,6 +4,7 @@
var AppDispatcher = require('../dispatcher/app_dispatcher.jsx');
var ChannelStore = require('../stores/channel_store.jsx');
var UserStore = require('../stores/user_store.jsx');
+var TeamStore = require('../stores/team_store.jsx');
var Constants = require('../utils/constants.jsx');
var ActionTypes = Constants.ActionTypes;
var AsyncClient = require('./async_client.jsx');
@@ -113,7 +114,7 @@ export function notifyMe(title, body, channel) {
if (channel) {
switchChannel(channel);
} else {
- window.location.href = '/';
+ window.location.href = TeamStore.getCurrentTeamUrl() + '/channels/town-square';
}
};
setTimeout(function closeNotificationOnTimeout() {