Revert "Simplification"

This reverts commit a22fcc9064.
This commit is contained in:
M66B
2020-01-02 20:07:53 +01:00
parent c45757c73b
commit e9c8f0c1b4
3 changed files with 33 additions and 10 deletions

View File

@@ -917,8 +917,15 @@ public class FragmentCompose extends FragmentBase {
}
private void check() {
if (getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
checkInternet();
Activity activity = getActivity();
if (activity != null)
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
if (getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
checkInternet();
}
});
}
};