mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-09 21:52:11 +02:00
fix for DEFAULT_NODE_AUTH_URL
This commit is contained in:
parent
a3b92e05da
commit
5b81fa27fc
1 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,7 @@ JSONCallbackParameters::JSONCallbackParameters(QObject* jsonCallbackReceiver, co
|
|||
}
|
||||
|
||||
AccountManager::AccountManager() :
|
||||
_authURL(DEFAULT_NODE_AUTH_URL),
|
||||
_authURL(),
|
||||
_pendingCallbackMap(),
|
||||
_accountInfo(),
|
||||
_shouldPersistToSettingsFile(true)
|
||||
|
@ -74,6 +74,8 @@ AccountManager::AccountManager() :
|
|||
qRegisterMetaType<JSONCallbackParameters>("JSONCallbackParameters");
|
||||
|
||||
qRegisterMetaType<QHttpMultiPart*>("QHttpMultiPart*");
|
||||
|
||||
setAuthURL(DEFAULT_NODE_AUTH_URL);
|
||||
|
||||
connect(&_accountInfo, &DataServerAccountInfo::balanceChanged, this, &AccountManager::accountInfoBalanceChanged);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue