diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-08 17:15:07 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-08 17:15:07 +0900 |
| commit | 4753dfa4d9c872f4cde02b0d16736890475ba7ff (patch) | |
| tree | 24dbbd63fd34414bd72669e735066365e370821e /src/client | |
| parent | oops (diff) | |
| download | sharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.tar.gz sharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.tar.bz2 sharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.zip | |
oops
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/components/timeline.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/timeline.vue b/src/client/app/desktop/views/components/timeline.vue index ea8f0053bc..e1f88b62f3 100644 --- a/src/client/app/desktop/views/components/timeline.vue +++ b/src/client/app/desktop/views/components/timeline.vue @@ -96,7 +96,7 @@ export default Vue.extend({ onNote(note) { // サウンドを再生する if ((this as any).os.isEnableSounds) { - const sound = new Audio(`${url}/assets/note.mp3`); + const sound = new Audio(`${url}/assets/post.mp3`); sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 1; sound.play(); } |