1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-17 08:54:49 +02: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:
Matt Tucker 2003-07-15 04:07:30 +00:00 committed by mtucker
parent c7d92fe4f1
commit 98d41485d4

View file

@ -121,7 +121,8 @@ public class Chat {
this.participant = participant; this.participant = participant;
this.chatID = chatID; this.chatID = chatID;
messageCollector = connection.createPacketCollector(new ThreadFilter(chatID)); messageFilter = new ThreadFilter(chatID);
messageCollector = connection.createPacketCollector(messageFilter);
} }
/** /**