Bug fix for searching event sessions.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "osit-aether-app-svelte",
|
"name": "osit-aether-app-svelte",
|
||||||
"version": "3.0.4",
|
"version": "3.0.5",
|
||||||
"description": "One Sky IT's Aether App created with Svelte, SvelteKit, Tailwind CSS, Lucide, Font Awesome, and Skeleton UI. -Scott Idem",
|
"description": "One Sky IT's Aether App created with Svelte, SvelteKit, Tailwind CSS, Lucide, Font Awesome, and Skeleton UI. -Scott Idem",
|
||||||
"homepage": "https://oneskyit.com/",
|
"homepage": "https://oneskyit.com/",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
@@ -266,11 +266,9 @@ async function handle_search__event_session(
|
|||||||
and_lk_location_name = '',
|
and_lk_location_name = '',
|
||||||
search_delay = 0,
|
search_delay = 0,
|
||||||
max_tries = 5,
|
max_tries = 5,
|
||||||
params = {
|
enabled = $events_loc.pres_mgmt.qry_enabled ?? 'enabled',
|
||||||
'qry__enabled': $events_loc.pres_mgmt.qry_enabled ?? 'enabled',
|
hidden = $events_loc.pres_mgmt.qry_hidden ?? 'not_hidden',
|
||||||
'qry__hidden': $events_loc.pres_mgmt.qry_hidden ?? 'not_hidden',
|
limit = $events_loc.pres_mgmt.qry_limit__sessions ?? 35,
|
||||||
'qry__limit': $events_loc.pres_mgmt.qry_limit__sessions ?? 35,
|
|
||||||
},
|
|
||||||
try_cache = true,
|
try_cache = true,
|
||||||
log_lvl = 0,
|
log_lvl = 0,
|
||||||
}: {
|
}: {
|
||||||
@@ -279,7 +277,9 @@ async function handle_search__event_session(
|
|||||||
and_lk_location_name?: string,
|
and_lk_location_name?: string,
|
||||||
search_delay?: number, // In milliseconds
|
search_delay?: number, // In milliseconds
|
||||||
max_tries?: number,
|
max_tries?: number,
|
||||||
params?: key_val,
|
enabled?: string,
|
||||||
|
hidden?: string,
|
||||||
|
limit?: number,
|
||||||
try_cache?: boolean,
|
try_cache?: boolean,
|
||||||
log_lvl?: number,
|
log_lvl?: number,
|
||||||
}
|
}
|
||||||
@@ -338,7 +338,9 @@ async function handle_search__event_session(
|
|||||||
like_poc_name_qry_str: lk_search_str,
|
like_poc_name_qry_str: lk_search_str,
|
||||||
// external_event_id: $events_loc.pres_mgmt.default__external_registration_id,
|
// external_event_id: $events_loc.pres_mgmt.default__external_registration_id,
|
||||||
location_name: and_lk_location_name,
|
location_name: and_lk_location_name,
|
||||||
params: params,
|
enabled: enabled,
|
||||||
|
hidden: hidden,
|
||||||
|
limit: limit,
|
||||||
try_cache: try_cache,
|
try_cache: try_cache,
|
||||||
log_lvl: log_lvl,
|
log_lvl: log_lvl,
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user