Fix MUC messages from others being marked as read

This commit is contained in:
fiaxh 2018-08-06 00:51:23 +02:00
parent 41c333263b
commit ee5c838a6b

View file

@ -378,9 +378,9 @@ public class MucManager : StreamInteractionModule, Object {
m.marked = Message.Marked.RECEIVED;
}
}
// For own messages from other devices (msg is not a duplicate msg)
message.marked = Message.Marked.RECEIVED;
}
// For own messages from other devices (msg is not a duplicate msg)
message.marked = Message.Marked.RECEIVED;
return false;
}