Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions app/lib/shared/integrity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -897,9 +897,6 @@ class IntegrityChecker {
if (entry.timestamp.isBefore(mc.opened)) {
yield 'ModerationCase "${mc.caseId}" has action logged before it was opened.';
}
if (mc.resolved != null && entry.timestamp.isAfter(mc.resolved!)) {
yield 'ModerationCase "${mc.caseId}" has action logged after it was resolved.';
}
if (ModerationSubject.tryParse(entry.subject) == null) {
yield 'ModerationCase "${mc.caseId}" has action logged with invalid `subject`.';
}
Expand Down