Fix random href fallback

This commit is contained in:
Unrud 2022-04-20 17:23:35 +02:00
parent f06af066f9
commit a5716a7d84
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ class CollectionPartUpload(CollectionPartGet, CollectionPartCache,
radicale_item.get_etag(uid).strip('"') + suffix]:
if is_safe_free_href(href):
yield href
yield radicale_item.find_available_uid(is_safe_free_href, suffix)
yield radicale_item.find_available_uid(
lambda href: not is_safe_free_href(href), suffix)
cache_folder = os.path.join(self._filesystem_path,
".Radicale.cache", "item")