Fixed crash

This commit is contained in:
M66B 2020-03-31 18:42:06 +02:00
parent 0c66903af7
commit 87a0996b72
1 changed files with 4 additions and 1 deletions

View File

@ -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);