mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Merge pull request #165 from pocman/patch-1
Keep 4.1.9 chat.sendMessage(String) behavior
This commit is contained in:
commit
9bb0ed150b
1 changed files with 1 additions and 0 deletions
|
@ -42,6 +42,7 @@ public final class Chat extends Manager {
|
|||
public void send(CharSequence message) throws NotConnectedException, InterruptedException {
|
||||
Message stanza = new Message();
|
||||
stanza.setBody(message);
|
||||
stanza.setType(Message.Type.chat);
|
||||
send(stanza);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue