Quick save before more big changes.

This commit is contained in:
Scott Idem
2025-11-13 14:26:04 -05:00
parent a995711335
commit 4d6c10cbad
7 changed files with 388 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ import { createEventDispatcher, onMount, tick } from 'svelte';
import type { key_val } from '$lib/ae_stores';
import { ae_util } from '$lib/ae_utils/ae_utils';
// import { api } from '$lib/api';
import { core_func } from '$lib/ae_core/ae_core_functions';
import { check_hosted_file_obj_w_hash } from '$lib/ae_core/core__check_hosted_file_obj_w_hash';
import { ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
// export let element_id = 'svelte_input_file_element';
@@ -224,7 +224,7 @@ async function process_file_list(file_list) {
console.log(`Found file hash to lookup: ${ae_util.shorten_string({string: file_hash})}`);
file_data['hash_sha256'] = file_hash;
let check_hosted_file_obj_w_hash_result = await core_func.check_hosted_file_obj_w_hash({
let check_hosted_file_obj_w_hash_result = await check_hosted_file_obj_w_hash({
api_cfg: $ae_api,
hosted_file_hash: file_hash
});