TF-4141 Fix nitpick comments from coderabbit

This commit is contained in:
dab246
2025-12-23 12:28:59 +07:00
committed by Dat H. Pham
parent 1661210e04
commit 2d1ecd4cc0
3 changed files with 20 additions and 28 deletions
@@ -59,6 +59,6 @@ extension ListMailboxNodeExtension on List<MailboxNode> {
}
bool _equalsIgnoreCase(String? value, String expected) {
return value != null && value.toLowerCase() == expected;
return value != null && value.toLowerCase() == expected.toLowerCase();
}
}