mirror of
https://github.com/lubosz/overte.git
synced 2025-04-08 01:22:08 +02:00
Missed another spot
This commit is contained in:
parent
4b50454104
commit
b092862b03
2 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
var Settings = {
|
||||
showAdvanced: false,
|
||||
METAVERSE_URL: 'https://metaverse.highfidelity.com',
|
||||
METAVERSE_URL_STABLE: 'https://metaverse.highfidelity.com',
|
||||
METAVERSE_URL_STAGING: 'https://staging.highfidelity.com',
|
||||
METAVERSE_URL: METAVERSE_URL_STABLE,
|
||||
ADVANCED_CLASS: 'advanced-setting',
|
||||
DEPRECATED_CLASS: 'deprecated-setting',
|
||||
TRIGGER_CHANGE_CLASS: 'trigger-change',
|
||||
|
|
|
@ -58,6 +58,9 @@ using UserAgentGetter = std::function<QString()>;
|
|||
|
||||
const auto DEFAULT_USER_AGENT_GETTER = []() -> QString { return HIGH_FIDELITY_USER_AGENT; };
|
||||
|
||||
// If you want to use STAGING instead of STABLE,
|
||||
// don't forget to ALSO change the Domain Server Metaverse Server URL, which is at the top of:
|
||||
// <hifi repo>\domain-server\resources\web\settings\js\settings.js
|
||||
const QUrl METAVERSE_SERVER_URL_STAGING = "https://staging.highfidelity.com";
|
||||
const QUrl METAVERSE_SERVER_URL_STABLE = "https://metaverse.highfidelity.com";
|
||||
const QUrl METAVERSE_SERVER_URL = METAVERSE_SERVER_URL_STABLE;
|
||||
|
|
Loading…
Reference in a new issue