Skip to content

Commit 6eca0c2

Browse files
committed
fix archived_at timestamp of client in exporter
1 parent 3417b60 commit 6eca0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Service/Export/ExportService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function export(Organization $organization): string
167167
$client->id,
168168
$client->name,
169169
$client->organization_id,
170-
$client->archived_at ?? '',
170+
$client->archived_at?->toIso8601ZuluString() ?? '',
171171
$client->created_at?->toIso8601ZuluString() ?? '',
172172
$client->updated_at?->toIso8601ZuluString() ?? '',
173173
]);

0 commit comments

Comments
 (0)