Prevent crash

pull/207/head
M66B 3 years ago
parent 3664d9b656
commit 03b1c9edf5

@ -625,8 +625,10 @@ public class ViewModelMessages extends ViewModel {
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
boundary.destroy(state);
boundary = null;
if (boundary != null) {
boundary.destroy(state);
boundary = null;
}
owner.getLifecycle().removeObserver(this);
}
});

Loading…
Cancel
Save