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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-12-09 19:13:16 +0300
committerGitHub <noreply@github.com>2020-12-09 19:13:16 +0300
commit773d01bb0ee45c28027d924325161661732ef546 (patch)
treeaadcc3073202529b6cf5bfade0e2edd4f650751e
parenta47733eb8f5b711aac49ef9ccd53059ff02fc1b8 (diff)
parentcbd56cb13a877166b3104ffe657970bf7acf8937 (diff)
Merge pull request #4733 from nextcloud/backport/4730/stable20.1
[stable20.1] Prevent issues with utf8mb4 chars on update
-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'),
];
}