From 8cb8b65553cdc1d789e4171f33eae445b2e7b39b Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Sun, 22 Oct 2023 11:11:58 +0200 Subject: [PATCH] [mirotalksfu] - fix typo --- public/js/RoomClient.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 182feb25..b8bfce57 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -3754,8 +3754,15 @@ class RoomClient { to_peer_name: 'all', }; this.showMessage(recAction); + if (!this.showChatOnMessage) { - this.msgHTML(null, image.recording, null, `${icons.user} ${data.peer_name}:

${data.action}

`); + this.msgHTML( + null, + image.recording, + null, + `${icons.user} ${data.peer_name}:

${data.action}

`, + 'top', + ); } }