Fix destroy of ContactsManager in LinphoneManager
This commit is contained in:
parent
ca572887b2
commit
8b719d2011
2 changed files with 4 additions and 5 deletions
|
@ -1098,13 +1098,13 @@ public class LinphoneManager implements LinphoneCoreListener, LinphoneChatMessag
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ContactsManagerDestroy() {
|
public static void ContactsManagerDestroy() {
|
||||||
if (ContactsManager.getInstance() != null)
|
if (LinphoneManager.instance != null && LinphoneManager.instance.mServiceContext != null)
|
||||||
ContactsManager.getInstance().destroy();
|
LinphoneManager.instance.mServiceContext.getContentResolver().unregisterContentObserver(ContactsManager.getInstance());
|
||||||
|
ContactsManager.getInstance().destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void BluetoothManagerDestroy() {
|
public static void BluetoothManagerDestroy() {
|
||||||
if (BluetoothManager.getInstance() != null)
|
BluetoothManager.getInstance().destroy();
|
||||||
BluetoothManager.getInstance().destroy();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static synchronized void destroy() {
|
public static synchronized void destroy() {
|
||||||
|
|
|
@ -799,7 +799,6 @@ public final class LinphoneService extends Service {
|
||||||
}
|
}
|
||||||
|
|
||||||
instance = null;
|
instance = null;
|
||||||
getContentResolver().unregisterContentObserver(ContactsManager.getInstance());
|
|
||||||
LinphoneManager.destroy();
|
LinphoneManager.destroy();
|
||||||
|
|
||||||
// Make sure our notification is gone.
|
// Make sure our notification is gone.
|
||||||
|
|
Loading…
Reference in a new issue