Fixes FS#148: Remove 'store' hint from chat-markers

This commit is contained in:
steckbrief 2016-03-02 09:36:31 +01:00
parent 59f47485cf
commit f58407d0b8

View file

@ -151,9 +151,8 @@ public class MessageGenerator extends AbstractGenerator {
packet.setType(MessagePacket.TYPE_CHAT);
packet.setTo(to);
packet.setFrom(account.getJid());
Element received = packet.addChild("displayed","urn:xmpp:chat-markers:0");
Element received = packet.addChild("displayed", "urn:xmpp:chat-markers:0");
received.setAttribute("id", id);
packet.addChild("store", "urn:xmpp:hints");
return packet;
}