Skip to content

Commit bac53bd

Browse files
authored
Remove integrity check for ModerationCase event logs (#8669)
1 parent a58214a commit bac53bd

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

app/lib/shared/integrity.dart

-3
Original file line numberDiff line numberDiff line change
@@ -897,9 +897,6 @@ class IntegrityChecker {
897897
if (entry.timestamp.isBefore(mc.opened)) {
898898
yield 'ModerationCase "${mc.caseId}" has action logged before it was opened.';
899899
}
900-
if (mc.resolved != null && entry.timestamp.isAfter(mc.resolved!)) {
901-
yield 'ModerationCase "${mc.caseId}" has action logged after it was resolved.';
902-
}
903900
if (ModerationSubject.tryParse(entry.subject) == null) {
904901
yield 'ModerationCase "${mc.caseId}" has action logged with invalid `subject`.';
905902
}

0 commit comments

Comments
 (0)