Merge pull request #258 from CatalystCode/lawrencegripper-fixRedirectUrl

Lawrencegripper fix redirect url
This commit is contained in:
Mor Shemesh 2017-08-02 15:08:47 +03:00 коммит произвёл GitHub
Родитель f196ec2df3 3bf1ae7884
Коммит a68a999718
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -106,12 +106,12 @@ export default class Setup extends React.Component<any, ISetupState> {
if (redirectUrl) { return redirectUrl; }
let host = window.location.host;
let protocol = 'https';
let protocol = 'https:';
// On localhost, authentication requests go directly to port 4000
if (host === 'localhost:3000' || host === 'localhost:4000') {
host = 'localhost:4000';
protocol = 'http';
protocol = 'http:';
}
return protocol + '//' + host + '/auth/openid/return';