aboutsummaryrefslogtreecommitdiff
path: root/libdino/src/service/reactions.vala
diff options
context:
space:
mode:
Diffstat (limited to 'libdino/src/service/reactions.vala')
-rw-r--r--libdino/src/service/reactions.vala8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdino/src/service/reactions.vala b/libdino/src/service/reactions.vala
index 95bb0fa4..4b5c0731 100644
--- a/libdino/src/service/reactions.vala
+++ b/libdino/src/service/reactions.vala
@@ -364,7 +364,7 @@ public class Dino.Reactions : StreamInteractionModule, Object {
ReactionsTime reactions_time = null;
if (stanza.type_ == MessageStanza.TYPE_GROUPCHAT) {
reactions_time = get_muc_user_reactions(account, content_item_id, occupant_id, real_jid);
- } else if (stanza.type_ == MessageStanza.TYPE_CHAT) {
+ } else {
reactions_time = get_chat_user_reactions(account, content_item_id, from_jid);
}
@@ -374,10 +374,10 @@ public class Dino.Reactions : StreamInteractionModule, Object {
}
// Save reactions
- if (stanza.type_ == MessageStanza.TYPE_CHAT) {
- save_chat_reactions(account, from_jid, content_item_id, reaction_time_long, reactions);
- } else if (stanza.type_ == MessageStanza.TYPE_GROUPCHAT) {
+ if (stanza.type_ == MessageStanza.TYPE_GROUPCHAT) {
save_muc_reactions(account, content_item_id, from_jid, occupant_id, real_jid, reaction_time_long, reactions);
+ } else {
+ save_chat_reactions(account, from_jid, content_item_id, reaction_time_long, reactions);
}
// Notify about reaction changes