Fix favourites search from crashing

Add session GUID for avatar search and updater requests
This commit is contained in:
Natsumi
2025-04-11 10:39:22 +10:00
parent 912e23f204
commit 30b1bf3332
4 changed files with 45 additions and 8 deletions

View File

@@ -172,7 +172,10 @@ export default class extends baseClass {
try {
var response = await webApiService.execute({
url,
method: 'GET'
method: 'GET',
headers: {
'VRCX-ID': this.vrcxId
}
});
} finally {
this.checkingForVRCXUpdate = false;
@@ -243,7 +246,10 @@ export default class extends baseClass {
try {
var response = await webApiService.execute({
url,
method: 'GET'
method: 'GET',
headers: {
'VRCX-ID': this.vrcxId
}
});
} finally {
this.checkingForVRCXUpdate = false;