1
0

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

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}`);
}

View File

@ -439,10 +439,10 @@ function buildFsRouter(spacePrimitives: SpacePrimitives): Router {
response.headers.set("X-Last-Modified", "" + meta.lastModified);
response.headers.set("X-Content-Length", "" + meta.size);
response.headers.set("X-Permission", meta.perm);
} catch (err) {
response.status = 500;
response.body = "Options failed";
console.error("Options failed", err);
} catch {
response.status = 404;
response.body = "File not found";
// console.error("Options failed", err);
}
})
.delete("\/(.+)", async ({ response, params }) => {