diff --git a/src/service/appConfig.js b/src/service/appConfig.js index 5fe5e463..7641e6c8 100644 --- a/src/service/appConfig.js +++ b/src/service/appConfig.js @@ -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', diff --git a/src/stores/user.js b/src/stores/user.js index 8d0a7d49..8ee456f3 100644 --- a/src/stores/user.js +++ b/src/stores/user.js @@ -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( diff --git a/src/types/globals.d.ts b/src/types/globals.d.ts index 40052af9..370c3202 100644 --- a/src/types/globals.d.ts +++ b/src/types/globals.d.ts @@ -84,6 +84,7 @@ declare global { debugWebRequests: boolean; debugFriendState: boolean; debugIPC: boolean; + debugVrcPlus: boolean; errorNoty: any; dontLogMeOut: boolean; endpointDomain: string;