From e9efc70f7c63c6b8a42acaf733912c84ea482e8b Mon Sep 17 00:00:00 2001 From: zicla Date: Fri, 12 Apr 2019 20:15:14 +0800 Subject: [PATCH] Refine the first Method of PROPFIND. --- rest/dav_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/dav_controller.go b/rest/dav_controller.go index 455ae47..6912db8 100644 --- a/rest/dav_controller.go +++ b/rest/dav_controller.go @@ -96,7 +96,7 @@ func (this *DavController) Index(writer http.ResponseWriter, request *http.Reque this.logger.Info("请求访问来了:%s %s", request.RequestURI, subPath) - if request.Method == "PROPFIND1" { + if request.Method == "PROPFIND" { this.davService.HandlePropfind(writer, request)