diff --git a/TelegramBotBase/Form/ArrayPromptDialog.cs b/TelegramBotBase/Form/ArrayPromptDialog.cs index 22fbf3b..0891a88 100644 --- a/TelegramBotBase/Form/ArrayPromptDialog.cs +++ b/TelegramBotBase/Form/ArrayPromptDialog.cs @@ -56,7 +56,7 @@ namespace TelegramBotBase.Form var buttons = this.Buttons.Aggregate((a, b) => a.Union(b).ToArray()).ToList(); - if (call == null) + if(call==null) { return; } @@ -83,7 +83,7 @@ namespace TelegramBotBase.Form { ButtonForm btn = new ButtonForm(); - foreach (var bl in this.Buttons) + foreach(var bl in this.Buttons) { btn.AddButtonRow(bl.Select(a => new ButtonBase(a.Text, CallbackData.Create("action", a.Value))).ToList()); }