Merge pull request #5491 from nextcloud/mark-as-undone-on-update

fix(done): Mark card as undone when updating card
This commit is contained in:
Julius Härtl
2024-01-18 12:36:53 +01:00
committed by GitHub

View File

@@ -355,6 +355,8 @@ class CardService {
}
if ($done !== null) {
$card->setDone($done->getValue());
} else {
$card->setDone(null);
}