Rebased ref, commits from common ancestor:
commit 64c51acbb7ba13266b86b0166c8542e4e0318853
Author: Michael Stahl <[email protected]>
AuthorDate: Tue Apr 18 14:25:37 2023 +0200
Commit: Thorsten Behrens <[email protected]>
CommitDate: Tue Apr 18 14:32:03 2023 +0200
ucb: webdav-curl: experiment
Change-Id: I85e5253c7df0980f373d2dea788c331b81ed4a82
diff --git a/ucb/source/ucp/webdav-curl/DAVTypes.cxx
b/ucb/source/ucp/webdav-curl/DAVTypes.cxx
index d5b255c175cd..e41c5426e959 100644
--- a/ucb/source/ucp/webdav-curl/DAVTypes.cxx
+++ b/ucb/source/ucp/webdav-curl/DAVTypes.cxx
@@ -168,7 +168,10 @@ void DAVOptionsCache::addDAVOptions( DAVOptions &
rDAVOptions, const sal_uInt32
// tdf#153642 keep cached Class1 bit at aDAVOptionsException to avoid
of
// losing the ability to resave the document within the lifetime
because
// of disabled DAV detection in getResourceType()
- rDAVOptions.setClass1( (*it).second.isClass1() );
+ if ((*it).second.isClass1())
+ {
+ rDAVOptions.setClass1( (*it).second.isClass1() );
+ }
}
// not in cache, add it
TimeValue t1;