Nickname retreiving

Fixed bug where the new value was the old one and the old value was the new one
which caused not working rename event
cusax-fix
Damian Minkov 20 years ago
parent 18b28fc9f2
commit 2c77533d76

@ -35,7 +35,7 @@ public MetaContactRenamedEvent(MetaContact source,
*/
public String getNewDisplayName()
{
return (String)getOldValue();
return (String)getNewValue();
}
/**
@ -45,6 +45,6 @@ public String getNewDisplayName()
*/
public String getOldDisplayName()
{
return (String)getNewValue();
return (String)getOldValue();
}
}

Loading…
Cancel
Save