diff --git a/lib/Service/OverviewService.php b/lib/Service/OverviewService.php index 1764dca071..907ca813af 100644 --- a/lib/Service/OverviewService.php +++ b/lib/Service/OverviewService.php @@ -59,8 +59,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) );