mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-01-29 00:14:12 +01:00
Allow thread+omemo
(cherry picked from commit 0c3f8b7537f29823ed1b6e10a8dc0d1f8de7a1c7)
This commit is contained in:
parent
ea81379556
commit
56fcd7f441
1 changed files with 4 additions and 0 deletions
|
@ -81,6 +81,10 @@ public class MessageGenerator extends AbstractGenerator {
|
|||
for (Element el : message.getPayloads()) {
|
||||
packet.addChild(el);
|
||||
}
|
||||
} else {
|
||||
for (Element el : message.getPayloads()) {
|
||||
if ("thread".equals(el.getName())) packet.addChild(el);
|
||||
}
|
||||
}
|
||||
return packet;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue