mirror of
https://github.com/moparisthebest/Conversations
synced 2025-02-17 15:10:09 -05:00
catch exception when unregistering receivers that have not been registered before
This commit is contained in:
parent
f81e44d339
commit
e65068d226
@ -662,7 +662,11 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||
|
||||
@Override
|
||||
public void onDestroy() {
|
||||
try {
|
||||
unregisterReceiver(this.mEventReceiver);
|
||||
} catch (IllegalArgumentException e) {
|
||||
//ignored
|
||||
}
|
||||
super.onDestroy();
|
||||
}
|
||||
|
||||
@ -672,7 +676,11 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||
filter.addAction(Intent.ACTION_SCREEN_OFF);
|
||||
registerReceiver(this.mEventReceiver, filter);
|
||||
} else {
|
||||
try {
|
||||
unregisterReceiver(this.mEventReceiver);
|
||||
} catch (IllegalArgumentException e) {
|
||||
//ignored
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user