mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Fixed crash
This commit is contained in:
parent
0c66903af7
commit
87a0996b72
1 changed files with 4 additions and 1 deletions
|
@ -928,7 +928,10 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
|||
Collections.sort(parents, parents.get(0).getComparator(context));
|
||||
|
||||
for (TupleFolderEx parent : parents)
|
||||
if ((!parent.hide || show_hidden) && (parent.subscribed || !subscribed_only)) {
|
||||
if ((show_hidden || !parent.hide) &&
|
||||
(!subscribed_only ||
|
||||
parent.accountProtocol != EntityAccount.TYPE_IMAP ||
|
||||
(parent.subscribed != null && parent.subscribed))) {
|
||||
parent.indentation = indentation;
|
||||
result.add(parent);
|
||||
|
||||
|
|
Loading…
Reference in a new issue