1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Include properties in collection etag

This commit is contained in:
Unrud 2017-07-22 21:34:53 +02:00 committed by Unrud
parent a26d90d8d7
commit 71916452ec

View file

@ -459,6 +459,7 @@ class BaseCollection:
etag = md5()
for item in self.get_all():
etag.update((item.href + "/" + item.etag).encode("utf-8"))
etag.update(json.dumps(self.get_meta(), sort_keys=True).encode())
return '"%s"' % etag.hexdigest()
@classmethod