mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
send the UUID session ID without curly braces
This commit is contained in:
parent
4120ed9f0b
commit
1ec421350d
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