TF-4227 Fix conflict with master branch

This commit is contained in:
dab246
2026-01-16 14:49:13 +07:00
committed by Dat H. Pham
parent 56aa776a25
commit f54250eb26
13 changed files with 329 additions and 125 deletions
@@ -150,21 +150,14 @@ extension PresentationMailboxExtension on PresentationMailbox {
String? get filterKeyword {
if (isFavorite) {
return KeyWordIdentifier.emailFlagged.value;
} else if (isLabelMailbox) {
return (this as PresentationLabelMailbox).label.keyword?.value;
} else {
return null;
}
return null;
}
bool get isCacheable => !isFavorite && this is! PresentationLabelMailbox;
bool get isCacheable => !isVirtualFolder && this is! PresentationLabelMailbox;
bool get isLabelMailbox => this is PresentationLabelMailbox;
String? get filterKeyword {
if (isFavorite) {
return KeyWordIdentifier.emailFlagged.value;
}
if (isLabelMailbox) {
return (this as PresentationLabelMailbox).label.keyword?.value;
}
return null;
}
}