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