Browse Source
Fix loading of delete caldav objet URIs
Regression of 462962197d
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/27311/head
Christoph Wurst
5 years ago
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
1 changed files with
2 additions and
2 deletions
-
apps/dav/lib/CalDAV/CalDavBackend.php
|
|
|
@ -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'], |
|
|
|
|