Wrapping up for the day. The new launcher is partially working. There is a lot of work to do.
This commit is contained in:
@@ -20,13 +20,17 @@ export async function load({ params, parent }) { // route
|
||||
if (!person_id) {
|
||||
console.log(`ae core person [person_id] +page.ts: The person_id was not found in the params!!!`);
|
||||
error(404, {
|
||||
message: 'Session not found'
|
||||
message: 'Person not found'
|
||||
});
|
||||
}
|
||||
|
||||
ae_acct.slct.person_id = person_id;
|
||||
|
||||
let load_person_obj = await core_func.handle_load_ae_obj_id__person({api_cfg: ae_acct.api, person_id: person_id, try_cache: false});
|
||||
let load_person_obj = await core_func.handle_load_ae_obj_id__person({
|
||||
api_cfg: ae_acct.api,
|
||||
person_id: person_id,
|
||||
try_cache: false
|
||||
});
|
||||
|
||||
ae_acct.slct.person_obj = load_person_obj;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user