From 1bb11d593ea5af809e2561499dc6af6e419e0f5a Mon Sep 17 00:00:00 2001 From: sallbet Date: Fri, 11 Aug 2023 15:22:07 +0300 Subject: [PATCH] Fix country mute/unmute message in channels --- src/core/ChatProvider.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/ChatProvider.js b/src/core/ChatProvider.js index 80dc734..43f4c5e 100644 --- a/src/core/ChatProvider.js +++ b/src/core/ChatProvider.js @@ -310,7 +310,7 @@ export class ChatProvider { if (ret) { this.broadcastChatMessage( 'info', - `Country ${cc} has been muted from en by ${initiator}`, + `Country ${cc} has been muted from this channel by ${initiator}`, channelId, this.infoUserId, ); @@ -332,7 +332,7 @@ export class ChatProvider { } this.broadcastChatMessage( 'info', - `Country ${cc} has been unmuted from en by ${initiator}`, + `Country ${cc} has been unmuted from this channel by ${initiator}`, channelId, this.infoUserId, );