mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 16:11:12 -05:00
Fix: Handle internal errors
This commit is contained in:
@@ -96,9 +96,9 @@ export function normalizePhotoSubmissionItems(
|
||||
id: item.id,
|
||||
url: item.cloudflare_image_url,
|
||||
filename: item.filename || `Photo ${item.order_index + 1}`,
|
||||
caption: item.caption,
|
||||
title: item.title,
|
||||
date_taken: item.date_taken,
|
||||
caption: item.caption || undefined,
|
||||
title: item.title || undefined,
|
||||
date_taken: item.date_taken || undefined,
|
||||
order_index: item.order_index,
|
||||
}));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user