From a5ba014736675a4a4aa725e204768bc9274e227e Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Thu, 12 Jan 2023 00:01:47 +0000 Subject: [PATCH] 401 Unauthorized is an error response we send. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4117 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/httpd.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/httpd.js b/core/httpd.js index 36272307..97e58a78 100644 --- a/core/httpd.js +++ b/core/httpd.js @@ -96,6 +96,7 @@ function Response(request, client) { 303: 'See other', 304: 'Not Modified', 400: 'Bad Request', + 401: 'Unauthorized', 403: 'Forbidden', 404: 'File not found', 500: 'Internal server error',