Merge pull request #10482 from ctrlaltdavid/21361

Fix AC playback script not logging
This commit is contained in:
anshuman64 2017-05-22 12:58:20 -07:00 committed by GitHub
commit bfb44693a3

View file

@ -28,6 +28,7 @@
#include <SettingHandle.h>
#include "NetworkingConstants.h"
#include "NetworkLogging.h"
#include "NodeList.h"
#include "udt/PacketHeaders.h"
@ -225,6 +226,10 @@ void AccountManager::sendRequest(const QString& path,
uuidStringWithoutCurlyBraces(_sessionID).toLocal8Bit());
QUrl requestURL = _authURL;
if (requestURL.isEmpty()) { // Assignment client doesn't set _authURL.
requestURL = NetworkingConstants::METAVERSE_SERVER_URL;
}
if (path.startsWith("/")) {
requestURL.setPath(path);