More updates related to the IDB table name changes for events.
This commit is contained in:
@@ -470,7 +470,7 @@ export async function delete_ae_obj_id__event_presentation(
|
||||
if (log_lvl) {
|
||||
console.log(`Attempting to remove IDB entry for event_presentation_id=${event_presentation_id}`);
|
||||
}
|
||||
db_events.presentations.delete(event_presentation_id);
|
||||
db_events.presentation.delete(event_presentation_id);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -587,7 +587,7 @@ export function db_save_ae_obj_li__event_presentation(
|
||||
}
|
||||
|
||||
try {
|
||||
const id_random = await db_events.presentations.put({
|
||||
const id_random = await db_events.presentation.put({
|
||||
id: obj.event_presentation_id_random,
|
||||
// id_random: obj.event_presentation_id_random,
|
||||
event_presentation_id: obj.event_presentation_id_random,
|
||||
@@ -643,7 +643,7 @@ export function db_save_ae_obj_li__event_presentation(
|
||||
console.log(status);
|
||||
}
|
||||
|
||||
// const id_random = await db_events.presentations.put(obj);
|
||||
// const id_random = await db_events.presentation.put(obj);
|
||||
// console.log(`Put obj with ID: ${obj.event_presentation_id_random}`);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user