mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-28 03:04:15 +00:00
Windows phone 8.1 sends ETag=*, see https://www.ietf.org/rfc/rfc2068.txt, chapter 14.25
This commit is contained in:
parent
3ca7960746
commit
f03c0ecc3b
@ -69,7 +69,7 @@ if ( $dav_resource->IsCollection() ) {
|
||||
}
|
||||
}
|
||||
else {
|
||||
if ( (isset($request->etag_if_match) && $request->etag_if_match != $dav_resource->unique_tag() ) ) {
|
||||
if ( isset($request->etag_if_match) && $request->etag_if_match != $dav_resource->unique_tag() && $request->etag_if_match != "*" ) {
|
||||
$request->DoResponse( 412, translate("Resource has changed on server - not deleted") );
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user