Преглед на файлове

update: fix telegram markdown

tokumeikoi преди 3 години
родител
ревизия
ce8b5dde28
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Services/TelegramService.php

+ 1 - 1
app/Services/TelegramService.php

@@ -17,7 +17,7 @@ class TelegramService {
     public function sendMessage(int $chatId, string $text, string $parseMode = '')
     {
         if ($parseMode === 'markdown') {
-            $text = Markdown::parse($text);
+            $text = str_replace('_', '\_', $text);
         }
         $this->request('sendMessage', [
             'chat_id' => $chatId,