Update src/Content/Smilies.php

Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
Michael Vogel 2023-08-29 04:59:27 +02:00 committed by GitHub
parent 7ee07535f5
commit 6ed440718d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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));
}