From a1747f2ddb96cbddeefcd21c52c33124dddb947e Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Fri, 7 Mar 2025 12:41:12 +0100 Subject: [PATCH] fix: allow empty note --- note.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/note.php b/note.php index ed500a3..aa82522 100644 --- a/note.php +++ b/note.php @@ -107,7 +107,7 @@ $content = file_get_contents($dir . '/' . $title . '.md'); } - if (!$content) + if ($content === false) { http_response_code(404); die();