Bug fix in extractEventFromNote with minimum Note

This commit is contained in:
ssmucny 2023-04-24 22:35:32 -04:00
parent a4c726498b
commit bcbc261e3b
1 changed files with 13 additions and 9 deletions

View File

@ -41,8 +41,9 @@ export class ApEventService {
throw new Error('invalid type'); throw new Error('invalid type');
} }
const title = note.name!; if (note.name && note.startTime) {
const start = note.startTime!; const title = note.name;
const start = note.startTime;
const end = note.endTime ?? null; const end = note.endTime ?? null;
return { return {
@ -51,5 +52,8 @@ export class ApEventService {
end, end,
metadata: {}, metadata: {},
}; };
} else {
throw new Error('Invalid event properties')
}
} }
} }