mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Fix to create message filter correctly.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1985 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
c7d92fe4f1
commit
98d41485d4
1 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,8 @@ public class Chat {
|
|||
this.participant = participant;
|
||||
this.chatID = chatID;
|
||||
|
||||
messageCollector = connection.createPacketCollector(new ThreadFilter(chatID));
|
||||
messageFilter = new ThreadFilter(chatID);
|
||||
messageCollector = connection.createPacketCollector(messageFilter);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue