mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 03:52:06 +01:00
Do not filter groupchat messages without body
for MessageListeners in MultiUserChat SMACK-568
This commit is contained in:
parent
e9b47d4164
commit
c3ae73472e
1 changed files with 0 additions and 6 deletions
|
@ -1950,12 +1950,6 @@ public class MultiUserChat {
|
|||
new AndFilter(
|
||||
FromMatchesFilter.create(room),
|
||||
new MessageTypeFilter(Message.Type.groupchat));
|
||||
messageFilter = new AndFilter(messageFilter, new PacketFilter() {
|
||||
public boolean accept(Packet packet) {
|
||||
Message msg = (Message) packet;
|
||||
return msg.getBody() != null;
|
||||
}
|
||||
});
|
||||
presenceFilter =
|
||||
new AndFilter(FromMatchesFilter.create(room), new PacketTypeFilter(Presence.class));
|
||||
|
||||
|
|
Loading…
Reference in a new issue