mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 17:03:43 +02:00
Remove android specific start address
This commit is contained in:
parent
aeb7ca17a5
commit
30bd8977b7
1 changed files with 1 additions and 5 deletions
|
@ -28,15 +28,11 @@
|
|||
#include "UserActivityLogger.h"
|
||||
#include "udt/PacketHeaders.h"
|
||||
|
||||
#ifdef Q_OS_ANDROID
|
||||
const QString DEFAULT_HIFI_ADDRESS = "hifi://android/0.0,0.0,-200";
|
||||
#else
|
||||
#if USE_STABLE_GLOBAL_SERVICES
|
||||
const QString DEFAULT_HIFI_ADDRESS = "hifi://welcome/hello";
|
||||
#else
|
||||
const QString DEFAULT_HIFI_ADDRESS = "hifi://dev-welcome/hello";
|
||||
#endif
|
||||
#endif
|
||||
|
||||
const QString ADDRESS_MANAGER_SETTINGS_GROUP = "AddressManager";
|
||||
const QString SETTINGS_CURRENT_ADDRESS_KEY = "address";
|
||||
|
@ -108,7 +104,7 @@ QUrl AddressManager::currentFacingShareableAddress() const {
|
|||
|
||||
void AddressManager::loadSettings(const QString& lookupString) {
|
||||
if (lookupString.isEmpty()) {
|
||||
handleUrl(currentAddressHandle.get(), LookupTrigger::StartupFromSettings);
|
||||
handleUrl(DEFAULT_HIFI_ADDRESS, LookupTrigger::StartupFromSettings);
|
||||
} else {
|
||||
handleUrl(lookupString, LookupTrigger::StartupFromSettings);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue