summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-08 17:15:07 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-08 17:15:07 +0900
commit4753dfa4d9c872f4cde02b0d16736890475ba7ff (patch)
tree24dbbd63fd34414bd72669e735066365e370821e /src
parentoops (diff)
downloadsharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.tar.gz
sharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.tar.bz2
sharkey-4753dfa4d9c872f4cde02b0d16736890475ba7ff.zip
oops
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/components/timeline.vue2
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();
}