You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
170 // Replace some emojis and flags into latin characters before mb_convert_encoding() strips them away
171 $str = str_replace($pre_from, $pre_to, $str);
Maybe an if would be enough here.
170 // Replace some emojis and flags into latin characters before mb_convert_encoding() strips them away
171 if (is_null($str)) {
172 $str = '';
173 }
174 $str = str_replace($pre_from, $pre_to, $str);
The text was updated successfully, but these errors were encountered:
Another PHP 8.1 noice...
Maybe an if would be enough here.
The text was updated successfully, but these errors were encountered: