1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-29 11:15:51 +00:00

Fixed crash

This commit is contained in:
M66B 2020-01-02 20:08:37 +01:00
parent e9c8f0c1b4
commit 34fb50a87d

View file

@ -2740,7 +2740,8 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
@Override
public void run() {
if (getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
adapter.checkInternet();
if (!rvMessage.isComputingLayout())
adapter.checkInternet();
}
});
}