From 0e960ba955f8f076c41a153574ccfdba50ea8913 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Thu, 13 Nov 2025 18:59:27 -0500 Subject: [PATCH] Fixing id_random vs id for links and other things. Fixed the hash SHA256 error. --- src/lib/ae_archives/ae_archives__archive_content.ts | 2 ++ .../locations/ae_comp__event_location_obj_li.svelte | 6 +++--- .../[event_id]/session/[session_id]/session_view.svelte | 4 ++-- src/routes/events/ae_comp__event_session_obj_li.svelte | 4 ++-- src/routes/idaa/(idaa)/archives/[archive_id]/+page.svelte | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/lib/ae_archives/ae_archives__archive_content.ts b/src/lib/ae_archives/ae_archives__archive_content.ts index c2e77ae3..d8bcaef0 100644 --- a/src/lib/ae_archives/ae_archives__archive_content.ts +++ b/src/lib/ae_archives/ae_archives__archive_content.ts @@ -650,6 +650,8 @@ export async function process_ae_obj__archive_content_props({ obj.tmp_sort_3 = `${obj.original_datetime ?? ''}_${obj.group ?? ''}_${ obj.priority ? '1' : '0'}_${obj.sort?.toString().padStart(3, '0') ?? ''}`; + obj.hash_sha256 = obj.hosted_file_hash_sha256; + return obj; } }); diff --git a/src/routes/events/[event_id]/locations/ae_comp__event_location_obj_li.svelte b/src/routes/events/[event_id]/locations/ae_comp__event_location_obj_li.svelte index e6a8d3e2..c5222e59 100644 --- a/src/routes/events/[event_id]/locations/ae_comp__event_location_obj_li.svelte +++ b/src/routes/events/[event_id]/locations/ae_comp__event_location_obj_li.svelte @@ -162,7 +162,7 @@ if (!$events_loc.pres_mgmt?.location_kv) { @@ -171,7 +171,7 @@ if (!$events_loc.pres_mgmt?.location_kv) { @@ -180,7 +180,7 @@ if (!$events_loc.pres_mgmt?.location_kv) { diff --git a/src/routes/events/[event_id]/session/[session_id]/session_view.svelte b/src/routes/events/[event_id]/session/[session_id]/session_view.svelte index adf0dfcb..1bab0ef7 100644 --- a/src/routes/events/[event_id]/session/[session_id]/session_view.svelte +++ b/src/routes/events/[event_id]/session/[session_id]/session_view.svelte @@ -387,7 +387,7 @@ let clipboard_success = $state(false);