Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kominoshja authored Feb 2, 2022
1 parent 5e5c31e commit 6497f47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/dav/lib/CalDAV/Reminder/Backend.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public function getRemindersToProcess():array {
->from('calendar_reminders', 'cr')
->where($query->expr()->lte('cr.notification_date', $query->createNamedParameter($this->timeFactory->getTime())))
->leftJoin('cr', 'calendarobjects', 'co', $query->expr()->eq('cr.object_id', 'co.id'))
->leftJoin('cr', 'calendars', 'c', $query->expr()->eq('cr.calendar_id', 'c.id'));
->leftJoin('cr', 'calendars', 'c', $query->expr()->eq('cr.calendar_id', 'c.id'))
->groupBy(['cr.event_hash','cr.type','cr.uid']);
$stmt = $query->execute();

return array_map(
Expand Down

0 comments on commit 6497f47

Please sign in to comment.