Skip to content

Commit 302912a

Browse files
luka-nextcloudbackportbot[bot]
authored andcommitted
fix: showing no due cards
Signed-off-by: Luka Trovic <[email protected]>
1 parent dc8ae0e commit 302912a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Service/OverviewService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public function findUpcomingCards(string $userId): array {
3434
}, $userBoards));
3535

3636
$foundCards = array_merge(
37-
// private board: get cards with due date
38-
$this->cardMapper->findAllWithDue($boardOwnerIds),
37+
// private board: get all my assigned or unassigned cards
38+
$this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId),
3939
// shared board: get all my assigned or unassigned cards
4040
$this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId)
4141
);

0 commit comments

Comments
 (0)