Commit 316114f2 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Replaced && with ||. doh!!!

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3427 b35dd754-fafc-0310-a699-88a17e54d16e
parent fd326e6a
......@@ -143,7 +143,7 @@ class PrivacyItem implements Serializable, Comparable {
// notification then use the receipient of the packet in the analysis
matches = verifyJID(packet.getTo(), roster);
}
if (!matches && (filterEverything || filterPresence_in && filterIQ || filterMessage)) {
if (!matches && (filterEverything || filterPresence_in || filterIQ || filterMessage)) {
matches = verifyJID(packet.getFrom(), roster);
}
return matches;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment