Skip to content

Commit

Permalink
fix(login(js)): fix domain in redirect URL
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Aug 17, 2021
1 parent a60f79a commit 7e63452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/WebServerResources/js/Common/Authentication.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

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

0 comments on commit 7e63452

Please sign in to comment.