diff --git a/src/api/gramjs/apiBuilders/messages.ts b/src/api/gramjs/apiBuilders/messages.ts index a0f0ce1b5..4b23fb93d 100644 --- a/src/api/gramjs/apiBuilders/messages.ts +++ b/src/api/gramjs/apiBuilders/messages.ts @@ -669,6 +669,9 @@ function buildAction( } else { text = 'Notification.VoiceChatStartedChannel'; } + } else if (action instanceof GramJs.MessageActionBotAllowed) { + text = 'Chat.Service.BotPermissionAllowed'; + translationValues.push(action.domain); } else { text = 'ChatList.UnsupportedMessage'; }