Browse Source

Fix loading of delete caldav objet URIs

Regression of 462962197d

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v22.0.0beta3
Christoph Wurst 3 years ago
parent
commit
ff2a730aac
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      apps/dav/lib/CalDAV/CalDavBackend.php

+ 2
- 2
apps/dav/lib/CalDAV/CalDavBackend.php View File

@@ -1112,7 +1112,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
while ($row = $stmt->fetch()) {
$result[] = [
'id' => $row['id'],
'uri' => $row['co.uri'],
'uri' => $row['uri'],
'lastmodified' => $row['lastmodified'],
'etag' => '"' . $row['etag'] . '"',
'calendarid' => $row['calendarid'],
@@ -2156,7 +2156,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription

return [
'id' => $row['id'],
'uri' => $row['c.uri'],
'uri' => $row['uri'],
'lastmodified' => $row['lastmodified'],
'etag' => '"' . $row['etag'] . '"',
'calendarid' => $row['calendarid'],

Loading…
Cancel
Save