From f0dbdae20db636f846421024fca6fbda314f8a17 Mon Sep 17 00:00:00 2001 From: anazaryan Date: Wed, 13 Nov 2024 20:46:33 +0400 Subject: [PATCH] fix vacancy text to send in tg --- app/Components/Integrations/Telegram/VacancyChannel.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Components/Integrations/Telegram/VacancyChannel.php b/app/Components/Integrations/Telegram/VacancyChannel.php index 26516d3..f2b58c9 100644 --- a/app/Components/Integrations/Telegram/VacancyChannel.php +++ b/app/Components/Integrations/Telegram/VacancyChannel.php @@ -80,7 +80,6 @@ class VacancyChannel $text = str_ireplace('', '', $text); $text = str_ireplace('', '', $text); - - return $text; + return html_entity_decode($text, ENT_QUOTES | ENT_HTML5, 'UTF-8'); } } -- 1.7.10.4