diff --git a/lib/Service/OverviewService.php b/lib/Service/OverviewService.php index f947748ecb..bacd0b43ae 100644 --- a/lib/Service/OverviewService.php +++ b/lib/Service/OverviewService.php @@ -34,8 +34,8 @@ public function findUpcomingCards(string $userId): array { }, $userBoards)); $foundCards = array_merge( - // private board: get cards with due date - $this->cardMapper->findAllWithDue($boardOwnerIds), + // private board: get all my assigned or unassigned cards + $this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId), // shared board: get all my assigned or unassigned cards $this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId) );