501 Not Implemented instead of 404 Not Found when a page is not implemented

Signed-off-by: Skylar "The Cobra" Widulski <cobra@vern.cc>
This commit is contained in:
Skylar "The Cobra" Widulski 2023-12-16 15:43:04 -05:00
parent f751aaac8c
commit e4284abe4a
Signed by: cobra
GPG Key ID: 4FD8F812083FF6F9
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@
((or (equal? (car path-components) "categories")
(equal? (car path-components) "types"))
(meme-list-page path))
(else (error-page 404)))))
(else (error-page 501)))))
(install-suspendable-ports!)