Skip to content

Commit

Permalink
Merge e263e96 into b5ffdf5
Browse files Browse the repository at this point in the history
  • Loading branch information
aautio committed Feb 27, 2017
2 parents b5ffdf5 + e263e96 commit 09b326b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/components/do_verify_email.jsx
Expand Up @@ -24,7 +24,7 @@ export default class DoVerifyEmail extends React.Component {
this.props.location.query.uid,
this.props.location.query.hid,
() => {
browserHistory.push('/login?extra=verified&email=' + this.props.location.query.email);
browserHistory.push('/login?extra=verified&email=' + encodeURIComponent(this.props.location.query.email));
},
(err) => {
this.setState({verifyStatus: 'failure', serverError: err.message});
Expand Down

0 comments on commit 09b326b

Please sign in to comment.