mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
fix(cm): greeting markup
This commit is contained in:
@@ -30,12 +30,12 @@ public class Greet : BotEventHandler
|
||||
string membersHtml;
|
||||
if (members.Length > 1)
|
||||
{
|
||||
reply.Pre("Приветствуем новых участников!");
|
||||
reply.Code("Приветствуем новых участников!");
|
||||
membersHtml = string.Join(", ", members.Select(u => u.ToHtml()));
|
||||
}
|
||||
else
|
||||
{
|
||||
reply.Pre("Приветствуем нового участника!");
|
||||
reply.Code("Приветствуем нового участника!");
|
||||
membersHtml = members.First().ToHtml();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user