mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +02:00
Get UserActivityLogger working in AC scripts
This commit is contained in:
parent
e446d0f8c9
commit
e69c322fd3
1 changed files with 5 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
||||||
|
|
||||||
#include <SettingHandle.h>
|
#include <SettingHandle.h>
|
||||||
|
|
||||||
|
#include "NetworkingConstants.h"
|
||||||
#include "NetworkLogging.h"
|
#include "NetworkLogging.h"
|
||||||
#include "NodeList.h"
|
#include "NodeList.h"
|
||||||
#include "udt/PacketHeaders.h"
|
#include "udt/PacketHeaders.h"
|
||||||
|
@ -225,6 +226,10 @@ void AccountManager::sendRequest(const QString& path,
|
||||||
uuidStringWithoutCurlyBraces(_sessionID).toLocal8Bit());
|
uuidStringWithoutCurlyBraces(_sessionID).toLocal8Bit());
|
||||||
|
|
||||||
QUrl requestURL = _authURL;
|
QUrl requestURL = _authURL;
|
||||||
|
|
||||||
|
if (requestURL.isEmpty()) { // Assignment client doesn't set _authURL.
|
||||||
|
requestURL = NetworkingConstants::METAVERSE_SERVER_URL;
|
||||||
|
}
|
||||||
|
|
||||||
if (path.startsWith("/")) {
|
if (path.startsWith("/")) {
|
||||||
requestURL.setPath(path);
|
requestURL.setPath(path);
|
||||||
|
|
Loading…
Reference in a new issue