Commit 742f6f9b authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

Fixed a small bug that caused new contacts added to rosters not to be...

Fixed a small bug that caused new contacts added to rosters not to be persisted. I blame Eclipse for choosing to return false by default for the unimplemented interface method. ;)

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/pep@8978 b35dd754-fafc-0310-a699-88a17e54d16e
parent b7bbc73b
...@@ -696,7 +696,7 @@ public class IQPEPHandler extends IQHandler implements ServerIdentitiesProvider, ...@@ -696,7 +696,7 @@ public class IQPEPHandler extends IQHandler implements ServerIdentitiesProvider,
public boolean addingContact(Roster roster, RosterItem item, boolean persistent) { public boolean addingContact(Roster roster, RosterItem item, boolean persistent) {
// Do nothing // Do nothing
return false; return true;
} }
public void contactAdded(Roster roster, RosterItem item) { public void contactAdded(Roster roster, RosterItem item) {
......
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