fix: Подавление warning при работе на php7

This commit is contained in:
u_mulder 2023-03-07 12:17:52 +03:00 committed by Alexey
parent 848792c24a
commit f73071ac22

View File

@ -600,9 +600,11 @@ class Message
$converted = null;
if (!$converted && function_exists('mb_convert_encoding')) {
// `@` оставлена для совместимости с php7, так как в этой
// версии выкидывается warning, который надо подавлять
try {
if (mb_check_encoding($text, $from)) {
$converted = mb_convert_encoding($text, $to, $from);
if (@mb_check_encoding($text, $from)) {
$converted = @mb_convert_encoding($text, $to, $from);
}
} catch (\ValueError $e) {
// noop