Reactions: Fix xml attribute name

This commit is contained in:
fiaxh 2022-10-12 19:23:12 +02:00
parent a45280f8df
commit d4c674284e
1 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ public class Module : XmppStreamModule {
public void send_reaction(XmppStream stream, Jid jid, string stanza_type, string message_id, Gee.List<string> reactions) {
StanzaNode reactions_node = new StanzaNode.build("reactions", NS_URI).add_self_xmlns();
reactions_node.put_attribute("to", message_id);
reactions_node.put_attribute("id", message_id);
foreach (string reaction in reactions) {
StanzaNode reaction_node = new StanzaNode.build("reaction", NS_URI);
reaction_node.put_node(new StanzaNode.text(reaction));
@ -53,8 +53,8 @@ public class ReceivedPipelineListener : StanzaListener<MessageStanza> {
StanzaNode? reactions_node = message.stanza.get_subnode("reactions", NS_URI);
if (reactions_node == null) return false;
string? to_attribute = reactions_node.get_attribute("to");
if (to_attribute == null) return false;
string? id_attribute = reactions_node.get_attribute("id");
if (id_attribute == null) return false;
Gee.List<string> reactions = new ArrayList<string>();
foreach (StanzaNode reaction_node in reactions_node.get_subnodes("reaction", NS_URI)) {
@ -65,7 +65,7 @@ public class ReceivedPipelineListener : StanzaListener<MessageStanza> {
reactions.add(reaction);
}
}
stream.get_module(Module.IDENTITY).received_reactions(stream, message.from, to_attribute, reactions, message);
stream.get_module(Module.IDENTITY).received_reactions(stream, message.from, id_attribute, reactions, message);
return false;
}