summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/do_verify_email.jsx3
-rw-r--r--webapp/utils/web_client.jsx2
2 files changed, 2 insertions, 3 deletions
diff --git a/webapp/components/do_verify_email.jsx b/webapp/components/do_verify_email.jsx
index fe4d61a72..193205266 100644
--- a/webapp/components/do_verify_email.jsx
+++ b/webapp/components/do_verify_email.jsx
@@ -21,14 +21,13 @@ export default class DoVerifyEmail extends React.Component {
componentWillMount() {
const uid = this.props.location.query.uid;
const hid = this.props.location.query.hid;
- const teamName = this.props.location.query.teamname;
const email = this.props.location.query.email;
Client.verifyEmail(
uid,
hid,
() => {
- browserHistory.push('/' + teamName + '/login?extra=verified&email=' + email);
+ browserHistory.push('/login?extra=verified&email=' + email);
},
(err) => {
this.setState({verifyStatus: 'failure', serverError: err.message});
diff --git a/webapp/utils/web_client.jsx b/webapp/utils/web_client.jsx
index 6071b4bb4..a9851442b 100644
--- a/webapp/utils/web_client.jsx
+++ b/webapp/utils/web_client.jsx
@@ -32,7 +32,7 @@ class WebClientClass extends Client {
}
handleError = (err, res) => { // eslint-disable-line no-unused-vars
- if (err.status === HTTP_UNAUTHORIZED) {
+ if (err.status === HTTP_UNAUTHORIZED && res.req.url !== '/api/v3/users/login') {
GlobalActions.emitUserLoggedOutEvent('/login');
}
}