Skip to content
Draft
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
2 changes: 1 addition & 1 deletion app/statistics/prisma.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const fetchChartsMetadata = async () => {
WHERE NOT EXISTS (
SELECT 1
FROM jsonb_array_elements_text(iris) AS iri
WHERE NOT (iri LIKE 'http://%' OR iri LIKE 'https://%')
WHERE iri IS NULL OR NOT (iri LIKE 'http://%' OR iri LIKE 'https://%')
);
`.then((rows) => {
return rows.map((row) => ({
Expand Down
Loading