Backend: Fixed emoji context merging

This commit is contained in:
Natty 2023-12-22 19:52:38 +01:00
parent f23aae4ac7
commit c3e7791b3e
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ impl EmojiContext {
self.0.extend(
more.iter()
.filter(|&e| existing.contains(&e.emoji.0.shortcode))
.filter(|&e| !existing.contains(&e.emoji.0.shortcode))
.cloned(),
);
}