Skip to content

Commit

Permalink
[network-protocol][http] add 408 timeout to the propfind check.
Browse files Browse the repository at this point in the history
  • Loading branch information
tschak909 committed Jan 15, 2025
1 parent 73ada20 commit 686eef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/network-protocol/HTTP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ bool NetworkProtocolHTTP::open_dir_handle()
"</D:propfind>\r\n");

// If Method not allowed, try GET.
if (resultCode == 405)
if (resultCode == 405 || resultCode == 408)
{
httpOpenMode = GET;
return false;
Expand Down

0 comments on commit 686eef0

Please sign in to comment.