Merge branch 'master' into omemo-muc
This commit is contained in:
commit
9d15c464c2
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ private class EncryptionListEntry : Plugins.EncryptionListEntry, Object {
|
|||
Gee.List<Jid>? occupants = stream_interactor.get_module(MucManager.IDENTITY).get_occupants(conversation.counterpart, conversation.account);
|
||||
if (occupants != null) muc_jids.add_all(occupants);
|
||||
Gee.List<Jid>? offline_members = stream_interactor.get_module(MucManager.IDENTITY).get_offline_members(conversation.counterpart, conversation.account);
|
||||
if (occupants != null) muc_jids.add_all(offline_members);
|
||||
if (offline_members != null) muc_jids.add_all(offline_members);
|
||||
|
||||
foreach (Jid jid in muc_jids) {
|
||||
string? key_id = stream_interactor.get_module(Manager.IDENTITY).get_key_id(conversation.account, jid);
|
||||
|
|
Loading…
Reference in a new issue