Skip to content

Commit

Permalink
fixup! fix scheduling plugin not updating responding attendee status
Browse files Browse the repository at this point in the history
  • Loading branch information
miaulalala committed Jul 22, 2021
1 parent a04ab9b commit 3879be5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/dav/lib/CalDAV/Schedule/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,9 @@ private function process(ITip\Message $iTipMessage) {
if ($isNewNode) {
/** @var Calendar $calendar */
$calendar = $this->server->tree->getNodeForPath($calendarPath);
$calendar->createFile($newFileName, $newObject->serialize());
/** @var resource $resource */
$resource = $newObject->serialize();
$calendar->createFile($newFileName, $resource);
} else {
// If the message was a reply, we may have to inform other
// attendees of this attendees status. Therefore we're shooting off
Expand Down

0 comments on commit 3879be5

Please sign in to comment.