Small changes

This commit is contained in:
Natsumi
2025-12-09 15:22:19 +11:00
parent 71969d663e
commit d2340285de
10 changed files with 33 additions and 21 deletions

View File

@@ -15,6 +15,7 @@ import { useAvatarProviderStore } from './avatarProvider';
import { useAvatarStore } from './avatar';
import { useFavoriteStore } from './favorite';
import { useFriendStore } from './friend';
import { useGalleryStore } from './gallery';
import { useGameLogStore } from './gameLog';
import { useGameStore } from './game';
import { useGroupStore } from './group';
@@ -50,6 +51,7 @@ export const useVrcxStore = defineStore('Vrcx', () => {
const gameLogStore = useGameLogStore();
const updateLoopStore = useUpdateLoopStore();
const vrcStatusStore = useVrcStatusStore();
const galleryStore = useGalleryStore();
const { t } = useI18n();
const state = reactive({
@@ -257,8 +259,9 @@ export const useVrcxStore = defineStore('Vrcx', () => {
instanceStore.cachedInstances.delete(id);
}
});
avatarStore.cachedAvatarNames = new Map();
userStore.customUserTags = new Map();
avatarStore.cachedAvatarNames.clear();
userStore.customUserTags.clear();
galleryStore.cachedEmoji.clear();
}
function eventVrcxMessage(data) {