mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Consider POP3 folders as initialized
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user