From cb45ec2fcedf0b45cbb77ff6ecfc5fc1ce770e2b Mon Sep 17 00:00:00 2001 From: tabuna Date: Tue, 19 Mar 2024 07:26:45 +0300 Subject: [PATCH] Changed format message --- app/Services/TelegramBot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/TelegramBot.php b/app/Services/TelegramBot.php index 1db91a47..30f894c4 100644 --- a/app/Services/TelegramBot.php +++ b/app/Services/TelegramBot.php @@ -98,7 +98,7 @@ public function isSpam(string $message): bool TelegramMessage::create() ->to(config('services.telegram-bot-api.chat_id')) - ->line('*Сообщение было классифицировано как '.$classifier->most($message)) + ->line('Сообщение было классифицировано как '.$classifier->most($message)) ->line('') ->line('*📂 Текст сообщения*') ->escapedLine($message)