Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVitor Mattos <vitor@php.rio>2022-03-30 15:17:40 +0300
committerVitor Mattos <vitor@php.rio>2022-04-28 13:09:44 +0300
commita75a22f3ac3384ffd52e4642c05fbd3d35f94a3d (patch)
tree928b0443753187154662b7c1573f21bdbcf839db /lib
parent902476fa20516ac3abe3c79dd10aad1c8b60910e (diff)
Increase check if support reactionstechdebt/noid/emojihelper-interface
Signed-off-by: Vitor Mattos <vitor@php.rio>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Comments/Manager.php2
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();
}
/**