Fixed SIP contacts list not having presence contacts
This commit is contained in:
parent
1df6af8691
commit
4de45488bd
1 changed files with 7 additions and 0 deletions
|
@ -92,6 +92,13 @@ public class ContactsManager extends ContentObserver implements FriendListListen
|
|||
if (LinphoneManager.getLcIfManagerNotDestroyedOrNull() != null) {
|
||||
magicSearch = LinphoneManager.getLcIfManagerNotDestroyedOrNull().createMagicSearch();
|
||||
}
|
||||
|
||||
Core lc = LinphoneManager.getLcIfManagerNotDestroyedOrNull();
|
||||
if (lc != null) {
|
||||
for (FriendList list : lc.getFriendsLists()) {
|
||||
list.setListener(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void destroy() {
|
||||
|
|
Loading…
Reference in a new issue