Skip to content

Commit

Permalink
Merge pull request #5287 from nextcloud/bugfix/noid/access-done
Browse files Browse the repository at this point in the history
  • Loading branch information
juliushaertl committed Nov 14, 2023
2 parents cdba29d + 110ee28 commit 304dd01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function getCalendarObject(): VCalendar {
$date = new DateTime();
$date->setTimestamp($this->getLastModified());
$event->STATUS = 'COMPLETED';
$event->COMPLETED = $this->getDone() ? $this->$this->getDone() : $this->getArchived();
$event->COMPLETED = $this->getDone() ? $this->getDone() : $this->getArchived();
} else {
$event->STATUS = 'NEEDS-ACTION';
}
Expand Down

0 comments on commit 304dd01

Please sign in to comment.