diff --git a/src/components/AudioLayout.vue b/src/components/AudioLayout.vue
index 3a6d74e..d796d38 100644
--- a/src/components/AudioLayout.vue
+++ b/src/components/AudioLayout.vue
@@ -69,7 +69,7 @@
- 👏
+ 👏
mic
@@ -427,6 +427,12 @@ export default {
clapButtonClicked() {
if (this.currentAudioEvent) {
this.$emit("sendclap", { event: this.currentAudioEvent, timeOffset: this.currentTimeMs })
+
+ // Also, play locally
+ this.audioPlaybackReaction({
+ sender: this.$matrix.currentUserId,
+ emoji: "👏"
+ });
}
}
}