summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/SkNoteSub.vue
diff options
context:
space:
mode:
authorMarie <marie@kaifa.ch>2024-01-09 10:35:10 +0100
committerMarie <marie@kaifa.ch>2024-01-09 10:35:10 +0100
commitd974b30e56750366c11633203bb2ca22417030cf (patch)
treebeed0153867bf89547c8ce8ea5f7a4e96c7e8cfa /packages/frontend/src/components/SkNoteSub.vue
parentfix: icons (diff)
parentupdate sound (diff)
downloadsharkey-d974b30e56750366c11633203bb2ca22417030cf.tar.gz
sharkey-d974b30e56750366c11633203bb2ca22417030cf.tar.bz2
sharkey-d974b30e56750366c11633203bb2ca22417030cf.zip
merge: upstream
Diffstat (limited to 'packages/frontend/src/components/SkNoteSub.vue')
-rw-r--r--packages/frontend/src/components/SkNoteSub.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/SkNoteSub.vue b/packages/frontend/src/components/SkNoteSub.vue
index 60a574731f..363dcef348 100644
--- a/packages/frontend/src/components/SkNoteSub.vue
+++ b/packages/frontend/src/components/SkNoteSub.vue
@@ -204,7 +204,7 @@ function reply(viaKeyboard = false): void {
function react(viaKeyboard = false): void {
pleaseLogin();
showMovedDialog();
- sound.play('reaction');
+ sound.playMisskeySfx('reaction');
if (props.note.reactionAcceptance === 'likeOnly') {
misskeyApi('notes/like', {
noteId: props.note.id,
@@ -236,7 +236,7 @@ function react(viaKeyboard = false): void {
function like(): void {
pleaseLogin();
showMovedDialog();
- sound.play('reaction');
+ sound.playMisskeySfx('reaction');
misskeyApi('notes/like', {
noteId: props.note.id,
override: defaultLike.value,