summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-12-09 13:04:02 +0100
committerJoas Schilling <coding@schilljs.com>2020-12-09 13:04:02 +0100
commit508ba8d43f80629297e9f9f72ac79e74ee6e55ab (patch)
tree5d8561cf313e9ce5a8f424f860fb40cae2c4d264 /lib
parent07dfcbd39e08adec13e43f6d4aa2e8de847749ff (diff)
Prevent issues with utf8mb4 chars on update
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Chat/Changelog/Manager.php11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php
index 0afbcc3c9..0f4b6cbcf 100644
--- a/lib/Chat/Changelog/Manager.php
+++ b/lib/Chat/Changelog/Manager.php
@@ -84,15 +84,6 @@ class Manager {
}
public function getChangelogs(): array {
- $emojis = $this->l->t('- Spice up your messages with emojis from the emoji picker');
- if ($this->connection->supports4ByteText()) {
- $emojis = str_replace(
- '{emoji}',
- '😍',
- $this->l->t('- Spice up your messages with emojis from the emoji picker {emoji}')
- );
- }
-
return [
$this->l->t(
"Welcome to Nextcloud Talk!\n"
@@ -118,7 +109,7 @@ class Manager {
$this->l->t('- Shared files are now opened directly inside the chat view with the viewer apps'),
$this->l->t('New in Talk 10'),
$this->l->t('- You can now search for chats and messages in the unified search in the top bar'),
- $emojis,
+ $this->l->t('- Spice up your messages with emojis from the emoji picker'),
$this->l->t('- You can now change your camera and microphone while being in a call'),
];
}