From 77fd3393de6a5c8395f0f6944058b48090a1461d Mon Sep 17 00:00:00 2001 From: FlorianDahn Date: Tue, 10 Mar 2020 01:22:52 +0100 Subject: [PATCH] - update spaces --- TelegramBotBase/Form/ArrayPromptDialog.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()); }