Skip to content

Commit

Permalink
Merge pull request #5491 from nextcloud/mark-as-undone-on-update
Browse files Browse the repository at this point in the history
fix(done): Mark card as undone when updating card
  • Loading branch information
juliusknorr authored Jan 18, 2024
2 parents 3fd1667 + cf4d626 commit 488514c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Service/CardService.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,8 @@ public function update($id, $title, $stackId, $type, $owner, $description = '',
}
if ($done !== null) {
$card->setDone($done->getValue());
} else {
$card->setDone(null);
}


Expand Down

0 comments on commit 488514c

Please sign in to comment.