mirror of
https://github.com/overte-org/overte.git
synced 2025-08-12 09:34:16 +02:00
Fix authorization of API calls in XMLHttpRequest
This commit is contained in:
parent
6550b4e311
commit
1ee797efa4
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ void XMLHttpRequestClass::open(const QString& method, const QString& url, bool a
|
|||
notImplemented();
|
||||
}
|
||||
} else {
|
||||
if (url.toLower().left(33) == "https://metaverse.highfidelity.com/api/") {
|
||||
if (url.toLower().left(39) == "https://metaverse.highfidelity.com/api/") {
|
||||
AccountManager& accountManager = AccountManager::getInstance();
|
||||
|
||||
if (accountManager.hasValidAccessToken()) {
|
||||
|
|
Loading…
Reference in a new issue