1
0
Эх сурвалжийг харах

Fix supported-calendar-component-set for collection's components

Guillaume Ayoub 12 жил өмнө
parent
commit
70f8ee94d9
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      radicale/xmlutils.py

+ 2 - 1
radicale/xmlutils.py

@@ -273,7 +273,8 @@ def _propfind_response(path, item, props, user):
             # This is not a Todo
             # pylint: disable=W0511
             human_tag = _tag_from_clark(tag)
-            if human_tag in collection_props:
+            if is_collection and human_tag in collection_props:
+                # TODO: what do we have to do if it's not a collection?
                 components = collection_props[human_tag].split(",")
             else:
                 components = ("VTODO", "VEVENT", "VJOURNAL")