1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Fixed no messages not being removed

This commit is contained in:
M66B 2019-01-30 15:34:49 +00:00
parent 9ec35c4487
commit a3b6969b5b

View file

@ -2062,8 +2062,10 @@ public class FragmentMessages extends FragmentBase {
pbWait.setVisibility(View.GONE);
if (boundaryCallback == null && messages.size() == 0)
tvNoEmail.setVisibility(View.VISIBLE);
if (messages.size() > 0)
if (messages.size() > 0) {
tvNoEmail.setVisibility(View.GONE);
grpReady.setVisibility(View.VISIBLE);
}
}
};