From e3def398414d2166595c838e5dd0706002cfb0c6 Mon Sep 17 00:00:00 2001 From: limepotato Date: Wed, 17 Jul 2024 18:06:59 -0600 Subject: [PATCH] remove sound and settings for Chats --- packages/client/src/pages/settings/sounds.vue | 2 -- packages/client/src/store.ts | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/client/src/pages/settings/sounds.vue b/packages/client/src/pages/settings/sounds.vue index d0dc9582d..6d1c85dea 100644 --- a/packages/client/src/pages/settings/sounds.vue +++ b/packages/client/src/pages/settings/sounds.vue @@ -67,8 +67,6 @@ const sounds = ref({ note: ColdDeviceStorage.get("sound_note"), noteMy: ColdDeviceStorage.get("sound_noteMy"), notification: ColdDeviceStorage.get("sound_notification"), - chat: ColdDeviceStorage.get("sound_chat"), - chatBg: ColdDeviceStorage.get("sound_chatBg"), antenna: ColdDeviceStorage.get("sound_antenna"), channel: ColdDeviceStorage.get("sound_channel"), reaction: ColdDeviceStorage.get("sound_reaction"), diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 82e57bad0..8130f38a0 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -384,8 +384,8 @@ export class ColdDeviceStorage { sound_note: { type: 'syuilo/n-aec', volume: 0 }, sound_noteMy: { type: 'syuilo/n-cea-4va', volume: 0.5 }, sound_notification: { type: 'syuilo/n-ea', volume: 0.5 }, - sound_chat: { type: 'syuilo/pope1', volume: 0.5 }, - sound_chatBg: { type: 'syuilo/waon', volume: 0.5 }, + sound_chat: { type: 'syuilo/pope1', volume: 0 }, + sound_chatBg: { type: 'syuilo/waon', volume: 0 }, sound_antenna: { type: 'syuilo/triple', volume: 0.5 }, sound_channel: { type: 'syuilo/square-pico', volume: 0.5 }, sound_reaction: { type: 'syuilo/bubble2', volume: 0.4 },