From 9ace2dded4db3524f0372e2a76ff35c03594ffc4 Mon Sep 17 00:00:00 2001 From: Luka Trovic Date: Thu, 26 Mar 2026 16:56:45 +0100 Subject: [PATCH] fix: showing no due cards Signed-off-by: Luka Trovic --- lib/Service/OverviewService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) );