Merge pull request #2777 from vector-im/feature/bca/fix_duplicate_thumbs

Fix duplicate thumbs reactions
This commit is contained in:
Benoit Marty 2021-02-05 18:49:03 +01:00 committed by GitHub
commit 60f221dc37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ Improvements 🙌:
-
Bugfix 🐛:
- Duplicate thumbs | Mobile reactions for 👍 and 👎 are not the same as web (#2776)
- Join room by alias other federation error (#2778)
Translations 🗣:

View file

@ -95,6 +95,6 @@ class EmojiDataSource @Inject constructor(
}
companion object {
val quickEmojis = listOf("👍", "👎", "😄", "🎉", "😕", "❤️", "🚀", "👀")
val quickEmojis = listOf("\uD83D\uDC4D", "\uD83D\uDC4E", "😄", "🎉", "😕", "❤️", "🚀", "👀")
}
}