1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 00:59:39 +02:00

Implement message stanza <thread/> and <subject/> as ExtensionElement

Fixes SMACK-852.
This commit is contained in:
Florian Schmaus 2020-04-05 17:51:06 +02:00
parent f9fb4d7627
commit 14c351397d
8 changed files with 172 additions and 38 deletions

View file

@ -336,7 +336,9 @@ public class ChatConnectionTest {
jid = JidTestUtil.DUMMY_AT_EXAMPLE_ORG;
}
chatMsg.from(jid);
chatMsg.setThread(threadId);
if (threadId != null) {
chatMsg.setThread(threadId);
}
return chatMsg;
}