fix(login(js)): fix domain in redirect URL

pull/301/head
Francis Lachapelle 2021-08-17 14:59:57 -04:00
parent a60f79a8e3
commit 7e63452141
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
userName = username;
if (domain)
userName += '@' + domain.value;
userName += '@' + domain;
address = '' + window.location.href;
baseAddress = ApplicationBaseURL + encodeURIComponent(userName);
if (baseAddress[0] == '/') {