Skip to content

Commit

Permalink
Fix ReactionType not remembering animated status. (#965)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkerens committed Sep 16, 2020
1 parent ebc2cc7 commit 2eac499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/channel/reaction.rs
Expand Up @@ -431,7 +431,7 @@ impl From<EmojiId> for ReactionType {
impl From<EmojiIdentifier> for ReactionType {
fn from(emoji_id: EmojiIdentifier) -> ReactionType {
ReactionType::Custom {
animated: false,
animated: emoji_id.animated,
id: emoji_id.id,
name: Some(emoji_id.name)
}
Expand Down

0 comments on commit 2eac499

Please sign in to comment.