We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a58214a commit bac53bdCopy full SHA for bac53bd
app/lib/shared/integrity.dart
@@ -897,9 +897,6 @@ class IntegrityChecker {
897
if (entry.timestamp.isBefore(mc.opened)) {
898
yield 'ModerationCase "${mc.caseId}" has action logged before it was opened.';
899
}
900
- if (mc.resolved != null && entry.timestamp.isAfter(mc.resolved!)) {
901
- yield 'ModerationCase "${mc.caseId}" has action logged after it was resolved.';
902
- }
903
if (ModerationSubject.tryParse(entry.subject) == null) {
904
yield 'ModerationCase "${mc.caseId}" has action logged with invalid `subject`.';
905
0 commit comments