mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +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 {
|
public void send(CharSequence message) throws NotConnectedException, InterruptedException {
|
||||||
Message stanza = new Message();
|
Message stanza = new Message();
|
||||||
stanza.setBody(message);
|
stanza.setBody(message);
|
||||||
|
stanza.setType(Message.Type.chat);
|
||||||
send(stanza);
|
send(stanza);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue