mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #24911 from nextcloud/fix/tasks-calendar/undefined-index-search
Tasks search: make sure we have existing indexes before using them
This commit is contained in:
commit
27e43d810f
1 changed files with 4 additions and 2 deletions
|
|
@ -1776,7 +1776,8 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
|||
$calendarAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)));
|
||||
|
||||
// If it's shared, limit search to public events
|
||||
if ($calendar['principaluri'] !== $calendar['{http://owncloud.org/ns}owner-principal']) {
|
||||
if (isset($calendar['{http://owncloud.org/ns}owner-principal'])
|
||||
&& $calendar['principaluri'] !== $calendar['{http://owncloud.org/ns}owner-principal']) {
|
||||
$calendarAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC)));
|
||||
}
|
||||
|
||||
|
|
@ -1788,7 +1789,8 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
|
|||
$subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)));
|
||||
|
||||
// If it's shared, limit search to public events
|
||||
if ($subscription['principaluri'] !== $subscription['{http://owncloud.org/ns}owner-principal']) {
|
||||
if (isset($subscription['{http://owncloud.org/ns}owner-principal'])
|
||||
&& $subscription['principaluri'] !== $subscription['{http://owncloud.org/ns}owner-principal']) {
|
||||
$subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue