Browse Source
Merge pull request #27311 from nextcloud/fix/caldav-deleted-objects-uri
Fix loading of delete caldav objet URIs
pull/27317/head
kesselb
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'], |
|
|
|
|