mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 18:36:45 +02:00
use private_description instead of description for domain settings
This commit is contained in:
parent
4a30d549ad
commit
1de1c632af
1 changed files with 3 additions and 3 deletions
|
@ -555,7 +555,7 @@ function createNewDomainID(description, justConnected) {
|
||||||
// get the JSON object ready that we'll use to create a new domain
|
// get the JSON object ready that we'll use to create a new domain
|
||||||
var domainJSON = {
|
var domainJSON = {
|
||||||
"domain": {
|
"domain": {
|
||||||
"description": description
|
"private_description": description
|
||||||
},
|
},
|
||||||
"access_token": $(Settings.ACCESS_TOKEN_SELECTOR).val()
|
"access_token": $(Settings.ACCESS_TOKEN_SELECTOR).val()
|
||||||
}
|
}
|
||||||
|
@ -748,8 +748,8 @@ function chooseFromHighFidelityDomains(clickedButton) {
|
||||||
_.each(data.data.domains, function(domain){
|
_.each(data.data.domains, function(domain){
|
||||||
var domainString = "";
|
var domainString = "";
|
||||||
|
|
||||||
if (domain.description) {
|
if (domain.private_description) {
|
||||||
domainString += '"' + domain.description + '" - ';
|
domainString += '"' + domain.private_description + '" - ';
|
||||||
}
|
}
|
||||||
|
|
||||||
domainString += domain.id;
|
domainString += domain.id;
|
||||||
|
|
Loading…
Reference in a new issue