mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Consider POP3 folders as initialized
This commit is contained in:
parent
3ffb3b6996
commit
5cf8f1c260
1 changed files with 3 additions and 1 deletions
|
@ -347,7 +347,9 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
|||
}
|
||||
}
|
||||
ivSync.setImageTintList(ColorStateList.valueOf(
|
||||
folder.synchronize && folder.initialize != 0 && !EntityFolder.OUTBOX.equals(folder.type)
|
||||
folder.synchronize && folder.initialize != 0 &&
|
||||
!EntityFolder.OUTBOX.equals(folder.type) &&
|
||||
folder.accountProtocol == EntityAccount.TYPE_IMAP
|
||||
? textColorPrimary : textColorSecondary));
|
||||
|
||||
tvKeywords.setText(BuildConfig.DEBUG ? TextUtils.join(" ", folder.keywords) : null);
|
||||
|
|
Loading…
Reference in a new issue