Skip to content

Commit 0f60f13

Browse files
authored
Merge pull request #7811 from nextcloud/backport/7797/stable33
[stable33] fix: showing no due cards
2 parents 4991620 + 302912a commit 0f60f13

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)