mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fix camelcase
This commit is contained in:
parent
571aaac4d7
commit
ba8aa5b50c
2 changed files with 4 additions and 4 deletions
|
@ -198,7 +198,7 @@ void DomainServer::parseCommandLine() {
|
|||
|
||||
if (parser.isSet(domainIDOption)) {
|
||||
_overridingDomainID = QUuid(parser.value(domainIDOption));
|
||||
_overRideDomainID = true;
|
||||
_overrideDomainID = true;
|
||||
qDebug() << "domain-server ID is" << _overridingDomainID;
|
||||
}
|
||||
}
|
||||
|
@ -351,7 +351,7 @@ void DomainServer::handleTempDomainSuccess(QNetworkReply& requestReply) {
|
|||
|
||||
auto domainObject = jsonObject[DATA_KEY].toObject()[DOMAIN_KEY].toObject();
|
||||
if (!domainObject.isEmpty()) {
|
||||
auto id = _overRideDomainID ? _overridingDomainID.toString() : domainObject[ID_KEY].toString();
|
||||
auto id = _overrideDomainID ? _overridingDomainID.toString() : domainObject[ID_KEY].toString();
|
||||
auto name = domainObject[NAME_KEY].toString();
|
||||
auto key = domainObject[KEY_KEY].toString();
|
||||
|
||||
|
@ -462,7 +462,7 @@ void DomainServer::setupNodeListAndAssignments() {
|
|||
// set our LimitedNodeList UUID to match the UUID from our config
|
||||
// nodes will currently use this to add resources to data-web that relate to our domain
|
||||
bool isMetaverseDomain = false;
|
||||
if (_overRideDomainID) {
|
||||
if (_overrideDomainID) {
|
||||
nodeList->setSessionUUID(_overridingDomainID);
|
||||
isMetaverseDomain = true; // assume metaverse domain
|
||||
} else {
|
||||
|
|
|
@ -209,7 +209,7 @@ private:
|
|||
|
||||
QString _iceServerAddr;
|
||||
int _iceServerPort;
|
||||
bool _overRideDomainID { false }; // should we override the domain-id from settings?
|
||||
bool _overrideDomainID { false }; // should we override the domain-id from settings?
|
||||
QUuid _overridingDomainID { QUuid() }; // what should we override it with?
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue