Explorar o código

Fix the owner attriubtion for 1+ depth URLs

Guillaume Ayoub %!s(int64=14) %!d(string=hai) anos
pai
achega
8f488eb6bc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      radicale/ical.py

+ 1 - 1
radicale/ical.py

@@ -177,7 +177,7 @@ class Calendar(object):
             self.owner = split_path[0]
         elif len(split_path) > 1:
             # URL with at least one folder
-            self.owner = split_path[-1]
+            self.owner = split_path[0]
         else:
             self.owner = None
         self.local_path = path if path != '.' else ''