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:
parent
9ec35c4487
commit
a3b6969b5b
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue