diff options
author | Vitor Mattos <vitor@php.rio> | 2022-03-30 09:17:40 -0300 |
---|---|---|
committer | Vitor Mattos <vitor@php.rio> | 2022-04-28 07:09:44 -0300 |
commit | a75a22f3ac3384ffd52e4642c05fbd3d35f94a3d (patch) | |
tree | 928b0443753187154662b7c1573f21bdbcf839db /lib | |
parent | 902476fa20516ac3abe3c79dd10aad1c8b60910e (diff) | |
download | nextcloud-server-a75a22f3ac3384ffd52e4642c05fbd3d35f94a3d.tar.gz nextcloud-server-a75a22f3ac3384ffd52e4642c05fbd3d35f94a3d.zip |
Increase check if support reactions
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Comments/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Comments/Manager.php b/lib/private/Comments/Manager.php index 31107c1b9fb..d1a6739fa9d 100644 --- a/lib/private/Comments/Manager.php +++ b/lib/private/Comments/Manager.php @@ -1075,7 +1075,7 @@ class Manager implements ICommentsManager { * @since 24.0.0 */ public function supportReactions(): bool { - return $this->dbConn->supports4ByteText(); + return $this->emojiHelper->doesPlatformSupportEmoji(); } /** |