mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 22:03:50 +02:00
More debug
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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(
|
||||
|
||||
1
src/types/globals.d.ts
vendored
1
src/types/globals.d.ts
vendored
@@ -84,6 +84,7 @@ declare global {
|
||||
debugWebRequests: boolean;
|
||||
debugFriendState: boolean;
|
||||
debugIPC: boolean;
|
||||
debugVrcPlus: boolean;
|
||||
errorNoty: any;
|
||||
dontLogMeOut: boolean;
|
||||
endpointDomain: string;
|
||||
|
||||
Reference in New Issue
Block a user