Use self._make_request

This commit is contained in:
Chris Coutinho
2025-08-01 11:05:28 +02:00
parent 6bdbb6ea6c
commit 69fccb496a
+1 -2
View File
@@ -45,10 +45,9 @@ class CalendarClient(BaseNextcloudClient):
"Accept": "application/xml",
}
response = await self._client.request(
response = await self._make_request(
"PROPFIND", caldav_path, content=propfind_body, headers=headers
)
response.raise_for_status()
# Parse XML response
root = ET.fromstring(response.content)