From 92f1666e2b4269a59126c1cbccc644dae203462c Mon Sep 17 00:00:00 2001 From: SKProCH <29896317+SKProCH@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:23:23 +0300 Subject: [PATCH] Add emoji to callback (#55) --- src/VahterBanBot/Bot.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/VahterBanBot/Bot.fs b/src/VahterBanBot/Bot.fs index 2cf3369..c9f1c9d 100644 --- a/src/VahterBanBot/Bot.fs +++ b/src/VahterBanBot/Bot.fs @@ -431,13 +431,13 @@ let killSpammerAutomated let data = CallbackMessage.NotASpam { message = message } let! callback = DB.newCallback data return InlineKeyboardMarkup [ - InlineKeyboardButton.WithCallbackData("NOT a spam", string callback.id) + InlineKeyboardButton.WithCallbackData("✅ NOT a spam", string callback.id) ] else let spamData = CallbackMessage.Spam { message = message } let! spamCallback = DB.newCallback spamData return InlineKeyboardMarkup [ - InlineKeyboardButton.WithCallbackData("KILL", string spamCallback.id) + InlineKeyboardButton.WithCallbackData("🚫 KILL", string spamCallback.id) ] }