mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Keep 4.1.9 chat.sendMessage(String) behavior
chat2.Chat.send(String) should have the same behavior as chat.Chat.sendMessage(String)
This commit is contained in:
parent
7f851d806c
commit
b70e80b1ad
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