Merge pull request #388 from rgarmsen2295/mm-1785

MM-1785 Fixed issue with login redirects not working on safari
Этот коммит содержится в:
Corey Hulen
2015-08-17 14:53:55 -07:00
родитель 996f0d79a7 e8a291741f
Коммит a5bff83558

Просмотреть файл

@@ -50,7 +50,7 @@ module.exports = React.createClass({
var redirect = utils.getUrlParameter("redirect");
if (redirect) {
window.location.pathname = decodeURI(redirect);
window.location.pathname = decodeURIComponent(redirect);
} else {
window.location.pathname = '/' + name + '/channels/town-square';
}