Skip to content

Commit 686eef0

Browse files
committed
[network-protocol][http] add 408 timeout to the propfind check.
1 parent 73ada20 commit 686eef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/network-protocol/HTTP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ bool NetworkProtocolHTTP::open_dir_handle()
175175
"</D:propfind>\r\n");
176176

177177
// If Method not allowed, try GET.
178-
if (resultCode == 405)
178+
if (resultCode == 405 || resultCode == 408)
179179
{
180180
httpOpenMode = GET;
181181
return false;

0 commit comments

Comments
 (0)