Avatar lookup loading toast

This commit is contained in:
Natsumi
2026-02-03 13:52:55 +13:00
parent bbbb79eaca
commit 5a27e6fb51
7 changed files with 126 additions and 58 deletions
+2 -2
View File
@@ -221,7 +221,7 @@ export const useVRCXUpdaterStore = defineStore('VRCXUpdater', () => {
}
pendingVRCXUpdate.value = false;
if (AppDebug.debugWebRequests) {
console.log(json, response);
console.log(url, json, response);
}
if (json === Object(json) && json.name && json.published_at) {
changeLogDialog.value.buildName = json.name;
@@ -308,7 +308,7 @@ export const useVRCXUpdaterStore = defineStore('VRCXUpdater', () => {
return;
}
if (AppDebug.debugWebRequests) {
console.log(json, response);
console.log(url, json, response);
}
const releases = [];
if (typeof json !== 'object' || json.message) {