diff --git a/event/notification_event_listener.php b/event/notification_event_listener.php index 72b5697..4525e76 100644 --- a/event/notification_event_listener.php +++ b/event/notification_event_listener.php @@ -1008,13 +1008,8 @@ private function reformat_link_url($url) */ private function reformat_link_text($text) { - // It seems that escaping markdown links is no longer necessary: + // Escaping markdown links is no longer necessary: // https://github.com/discord/discord-api-docs/issues/6138 - - //$text = strtr($text, [ - // '[' => '\\[', - // ']' => '\\]' - //]); return html_entity_decode($text, ENT_COMPAT); }