diff --git a/CHANGELOG.md b/CHANGELOG.md index a05eb2cf7595..7faa9c0e0977 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,15 @@ --> +## 2023.x.x (unreleased) + +### General + +### Client +- Fix: 音がならない問題 + +### Server + ## 2023.11.1-kinel.3 ### General diff --git a/packages/frontend/src/scripts/sound.ts b/packages/frontend/src/scripts/sound.ts index 81925960e9b2..fbc5911bfc20 100644 --- a/packages/frontend/src/scripts/sound.ts +++ b/packages/frontend/src/scripts/sound.ts @@ -84,7 +84,7 @@ export function play(type: 'noteMy' | 'note' | 'antenna' | 'channel' | 'notifica if (sound.type == null || !canPlay) return; canPlay = false; - playFile(sound).finally(() => { + playFile(sound.type, sound.volume).finally(() => { // ごく短時間に音が重複しないように setTimeout(() => { canPlay = true;