Commit f0dbdae20db636f846421024fca6fbda314f8a17

Authored by Hayk Nazaryan
1 parent 1455f7d700
Exists in master

fix vacancy text to send in tg

Showing 1 changed file with 1 additions and 2 deletions Side-by-side Diff

app/Components/Integrations/Telegram/VacancyChannel.php
... ... @@ -80,7 +80,6 @@ class VacancyChannel
80 80 $text = str_ireplace('<em>', '<i>', $text);
81 81 $text = str_ireplace('</em>', '</i>', $text);
82 82  
83   -
84   - return $text;
  83 + return html_entity_decode($text, ENT_QUOTES | ENT_HTML5, 'UTF-8');
85 84 }
86 85 }