mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 14:47:35 +03:00
Fix get requests for whole calendar
This commit is contained in:
parent
72f3af9ab9
commit
091d89889d
2 changed files with 5 additions and 2 deletions
|
@ -52,7 +52,8 @@ def _response(code):
|
|||
|
||||
def name_from_path(path):
|
||||
"""Return Radicale item name from ``path``."""
|
||||
return path.split("/")[-1]
|
||||
path_parts = path.strip("/").split("/")
|
||||
return path_parts[-1] if len(path_parts) > 2 else None
|
||||
|
||||
|
||||
def delete(path, calendar):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue