Skip to content

Commit 240e9db

Browse files
committedMar 24, 2025
Remove integrity check for ModerationCase event logs
1 parent dd9baad commit 240e9db

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)