Change summary
src/main/java/eu/siacs/conversations/generator/MessageGenerator.java | 2
1 file changed, 2 insertions(+)
Detailed changes
@@ -119,6 +119,8 @@ public class MessageGenerator extends AbstractGenerator {
packet.setTo(conversation.getJid().toBareJid());
packet.setFrom(account.getJid());
packet.addChild(ChatState.toElement(conversation.getOutgoingChatState()));
+ packet.addChild("no-store", "urn:xmpp:hints");
+ packet.addChild("no-storage", "urn:xmpp:hints"); //wrong! don't copy this. Its *store*
return packet;
}