mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 03:07:05 +02:00
BUGZ-1386: Update simplifiedStatusIndicator to use domainID as org name instead of location.hostname
This commit is contained in:
parent
c4c29dd093
commit
c561bca79c
1 changed files with 3 additions and 1 deletions
|
@ -64,7 +64,9 @@ function simplifiedStatusIndicator(properties) {
|
|||
|
||||
queryParamString += "&displayName=" + displayNameToSend;
|
||||
queryParamString += "&status=" + currentStatus;
|
||||
queryParamString += "&organization=" + location.hostname;
|
||||
var domainID = location.domainID;
|
||||
domainID = domainID.substring(1, domainID.length - 1);
|
||||
queryParamString += "&organization=" + domainID;
|
||||
|
||||
var uri = REQUEST_URL + "?" + queryParamString;
|
||||
|
||||
|
|
Loading…
Reference in a new issue