Fixed regression where OPTIONS resulted in 500 instead of 404

This commit is contained in:
Zef Hemel
2022-10-17 20:21:09 +02:00
parent be578b8621
commit cd7c37b136
2 changed files with 5 additions and 6 deletions
+1 -2
View File
@@ -130,8 +130,7 @@ export async function dailyNoteCommand() {
});
let dailyNoteTemplateText = "";
try {
const text = await space.readPage(dailyNoteTemplate);
dailyNoteTemplateText = text;
dailyNoteTemplateText = await space.readPage(dailyNoteTemplate);
} catch {
console.warn(`No daily note template found at ${dailyNoteTemplate}`);
}