From 1928767adf00499ad08fafde341cc15c7c392d4a Mon Sep 17 00:00:00 2001 From: Natsumi Date: Thu, 30 Oct 2025 22:32:02 +1100 Subject: [PATCH] More Sentry filters --- src/stores/index.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/stores/index.js b/src/stores/index.js index 3f8a47de..22e8718b 100644 --- a/src/stores/index.js +++ b/src/stores/index.js @@ -59,7 +59,8 @@ pinia.use( GameLog: { // @ts-ignore ...state.GameLog, - gameLogTable: null + gameLogTable: null, + gameLogSessionTable: null }, Notification: { // @ts-ignore @@ -69,7 +70,9 @@ pinia.use( Moderation: { // @ts-ignore ...state.Moderation, - playerModerationTable: null + playerModerationTable: null, + cachedPlayerModerations: null, + cachedPlayerModerationsUserIds: null }, Photon: null, SharedFeed: { @@ -87,6 +90,17 @@ pinia.use( // @ts-ignore ...state.Avatar, avatarHistory: null + }, + Gallery: { + // @ts-ignore + ...state.Gallery, + emojiTable: null, + galleryTable: null, + instanceStickersCache: null, + inventoryTable: null, + printTable: null, + stickerTable: null, + VRCPlusIconsTable: null } }) })