Skip to content

Commit 8f33821

Browse files
authored
Merge pull request #5492 from nextcloud/backport/5491/stable28
[stable28] fix(done): Mark card as undone when updating card
2 parents 61c6d7f + c4bd299 commit 8f33821

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/Service/CardService.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,8 @@ public function update($id, $title, $stackId, $type, $owner, $description = '',
355355
}
356356
if ($done !== null) {
357357
$card->setDone($done->getValue());
358+
} else {
359+
$card->setDone(null);
358360
}
359361

360362

0 commit comments

Comments
 (0)