From a9f921a636106599f065068f35221326e1cc29af Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Tue, 12 Dec 2023 08:27:17 +0100 Subject: [PATCH] Remove type --- pkg/dav/response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/dav/response.go b/pkg/dav/response.go index 3f40f81..283b257 100644 --- a/pkg/dav/response.go +++ b/pkg/dav/response.go @@ -8,7 +8,7 @@ import ( // optimized versions, no more marshalling func BaseDirectory(path, added string) string { - return fmt.Sprintf("/%s%shttpd/unix-directoryHTTP/1.1 200 OK", customPathEscape(path), added) + return fmt.Sprintf("/%s%sHTTP/1.1 200 OK", customPathEscape(path), added) } func Directory(path, added string) string {