diff --git a/src/Content/Smilies.php b/src/Content/Smilies.php index 0c3397f13e..b7abbd8e5f 100644 --- a/src/Content/Smilies.php +++ b/src/Content/Smilies.php @@ -294,7 +294,7 @@ class Smilies */ public static function isEmojiPost(string $body): bool { - $conv = preg_replace('#\s#', '', html_entity_decode($body)); + $conv = preg_replace('#\s#u', '', html_entity_decode($body)); // Emojis are always 4 byte Unicode characters return (!empty($conv) && (strlen($conv) / mb_strlen($conv) == 4)); }