Explorar o código

update: fix telegram markdown

tokumeikoi %!s(int64=3) %!d(string=hai) anos
pai
achega
ce8b5dde28
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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,