mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 18:14:05 +02:00
Merge pull request #7976 from birarda/session-id-with-place-request
send session ID in AccountManager without curly braces
This commit is contained in:
commit
8ad572a269
1 changed files with 2 additions and 1 deletions
|
@ -222,7 +222,8 @@ void AccountManager::sendRequest(const QString& path,
|
|||
auto& activityLogger = UserActivityLogger::getInstance();
|
||||
if (activityLogger.isEnabled()) {
|
||||
static const QString METAVERSE_SESSION_ID_HEADER = "HFM-SessionID";
|
||||
networkRequest.setRawHeader(METAVERSE_SESSION_ID_HEADER.toLocal8Bit(), _sessionID.toString().toLocal8Bit());
|
||||
networkRequest.setRawHeader(METAVERSE_SESSION_ID_HEADER.toLocal8Bit(),
|
||||
uuidStringWithoutCurlyBraces(_sessionID).toLocal8Bit());
|
||||
}
|
||||
|
||||
QUrl requestURL = _authURL;
|
||||
|
|
Loading…
Reference in a new issue