瀏覽代碼

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,