From 501091059ae9fc2877d621cdbc0fb3c5ece56dae Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Thu, 20 Oct 2022 12:47:59 +0200 Subject: [PATCH] fix dav overwrite somehow the function call got lost --- src/ioslaves/http/http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ioslaves/http/http.cpp b/src/ioslaves/http/http.cpp index ec3c8809f..c54e568d2 100644 --- a/src/ioslaves/http/http.cpp +++ b/src/ioslaves/http/http.cpp @@ -5522,7 +5522,7 @@ bool HTTPProtocol::davDestinationExists() m_request.cacheTag.policy = CC_Reload; m_request.davData.depth = 0; - (void)/* handling result via response codes */ (true); + (void)/* handling result via response codes */proceedUntilResponseContent(true); if (!m_request.isKeepAlive) { httpCloseConnection(); // close connection if server requested it. -- GitLab