PersistentNotification unregister workaround.
This commit is contained in:
parent
9442c56eb8
commit
d202976251
|
@ -191,11 +191,16 @@ public class PersistentNotificationPlugin implements PluginBase {
|
||||||
|
|
||||||
private void checkBusRegistration() {
|
private void checkBusRegistration() {
|
||||||
if (fragmentEnabled) {
|
if (fragmentEnabled) {
|
||||||
MainApp.bus().register(this);
|
try {
|
||||||
|
MainApp.bus().register(this);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// already registered
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
MainApp.bus().unregister(this);
|
MainApp.bus().unregister(this);
|
||||||
} catch (Exception e) {
|
} catch (IllegalArgumentException e) {
|
||||||
|
// already unregistered
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue