summaryrefslogtreecommitdiffstats
path: root/webapp/utils/client.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils/client.jsx')
-rw-r--r--webapp/utils/client.jsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/webapp/utils/client.jsx b/webapp/utils/client.jsx
index a596d1e14..854aa31dc 100644
--- a/webapp/utils/client.jsx
+++ b/webapp/utils/client.jsx
@@ -50,12 +50,8 @@ function handleError(methodName, xhr, status, err) {
track('api', 'api_weberror', methodName, 'message', msg);
if (xhr.status === 401) {
- if (window.location.href.indexOf('/channels') === 0) {
- browserHistory.push('/login?extra=expired&redirect=' + encodeURIComponent(window.location.pathname + window.location.search));
- } else {
- var teamURL = window.location.pathname.split('/channels')[0];
- browserHistory.push(teamURL + '/login?extra=expired&redirect=' + encodeURIComponent(window.location.pathname + window.location.search));
- }
+ const team = window.location.pathname.split('/')[1];
+ browserHistory.push('/' + team + '/login?extra=expired&redirect=' + encodeURIComponent(window.location.pathname + window.location.search));
}
return e;