diff --git a/src/Service/HandleExports.php b/src/Service/HandleExports.php index c1baca8..da848c3 100644 --- a/src/Service/HandleExports.php +++ b/src/Service/HandleExports.php @@ -19,7 +19,11 @@ class HandleExports $records = [['domain', 'severity', 'public_comment', 'reject_media', 'reject_reports', 'obfuscate']]; $entries = $this->locations->getActiveLocations(); foreach ($entries as $entry) { - $item = [$entry->getUrl(), $entry->getRating(), $entry->getDescription(), "FALSE", "FALSE", "FALSE"]; + $rating = $entry->getRating(); + if ($rating == "defederate") { + $rating = "suspend"; + } + $item = [$entry->getUrl(), $rating, $entry->getDescription(), "FALSE", "FALSE", "FALSE"]; array_push($records, $item); }