More debug

This commit is contained in:
Natsumi
2025-10-22 22:04:07 +11:00
parent 6af467b050
commit df9c062092
3 changed files with 3 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ const AppDebug = reactive({
debugWebRequests: false,
debugFriendState: false,
debugIPC: false,
debugVrcPlus: false,
errorNoty: null,
dontLogMeOut: false,
endpointDomain: 'https://api.vrchat.cloud/api/1',

View File

@@ -297,7 +297,7 @@ export const useUserStore = defineStore('User', () => {
const cachedUsers = new Map();
const isLocalUserVrcPlusSupporter = computed(
() => currentUser.value.$isVRCPlus
() => currentUser.value.$isVRCPlus || AppDebug.debugVrcPlus
);
watch(

View File

@@ -84,6 +84,7 @@ declare global {
debugWebRequests: boolean;
debugFriendState: boolean;
debugIPC: boolean;
debugVrcPlus: boolean;
errorNoty: any;
dontLogMeOut: boolean;
endpointDomain: string;