From ed06eee2433f8e8f39b38394f4930cce8a308eea Mon Sep 17 00:00:00 2001 From: sofoxe1 <22683778+sofoxe1@users.noreply.github.com> Date: Sat, 23 Aug 2025 23:48:23 +0200 Subject: [PATCH] allow logging external events without notification (#1337) --- src/stores/vrcx.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stores/vrcx.js b/src/stores/vrcx.js index 979d38ff..2c237467 100644 --- a/src/stores/vrcx.js +++ b/src/stores/vrcx.js @@ -354,6 +354,7 @@ export const useVrcxStore = defineStore('Vrcx', () => { break; case 'External': { const displayName = data.DisplayName ?? ''; + const notify = data.notify ?? true; entry = { created_at: new Date().toJSON(), type: 'External', @@ -363,7 +364,9 @@ export const useVrcxStore = defineStore('Vrcx', () => { location: locationStore.lastLocation.location }; database.addGamelogExternalToDatabase(entry); - notificationStore.queueGameLogNoty(entry); + if (notify){ + notificationStore.queueGameLogNoty(entry); + } gameLogStore.addGameLog(entry); break; }