mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Use PacketTypeFilter.PRESENCE in EntityCapsManager
This commit is contained in:
parent
63d52f6eaa
commit
55d7c57a4f
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ public class EntityCapsManager extends Manager {
|
|||
ELEMENT, NAMESPACE));
|
||||
private static final PacketFilter PRESENCES_WITHOUT_CAPS = new AndFilter(new PacketTypeFilter(Presence.class), new NotFilter(new PacketExtensionFilter(
|
||||
ELEMENT, NAMESPACE)));
|
||||
private static final PacketFilter PRESENCES = new PacketTypeFilter(Presence.class);
|
||||
private static final PacketFilter PRESENCES = PacketTypeFilter.PRESENCE;
|
||||
|
||||
/**
|
||||
* Map of (node + '#" + hash algorithm) to DiscoverInfo data
|
||||
|
|
Loading…
Reference in a new issue