Skip to content

Commit 054c4de

Browse files
authored
Update ExportPollingStationsJob.cs (#974)
1 parent 2e07754 commit 054c4de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/Vote.Monitor.Hangfire/Jobs/Export/PollingStations/ExportPollingStationsJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private async Task<List<PollingStationModel>> GetPollingStationsAsync(Guid elect
8484
PS."Number",
8585
PS."Address",
8686
ps."DisplayOrder",
87-
coalesce(PS."Tags", '{}') as "Tags"
87+
COALESCE(NULLIF(PS."Tags", 'null'::jsonb), '{}'::jsonb) AS "Tags"
8888
FROM
8989
"PollingStations" PS
9090
WHERE

0 commit comments

Comments
 (0)