From b5d22c0bbc077061ecd8500c710d71cd69fa5b8d Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Thu, 20 Nov 2014 15:46:58 +0100 Subject: [PATCH] Add the UID to the ical file. This also fixes the caldavs issues. Fixes #33,#31 --- src/Hackspace/Bundle/CalciferBundle/Entity/Event.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Hackspace/Bundle/CalciferBundle/Entity/Event.php b/src/Hackspace/Bundle/CalciferBundle/Entity/Event.php index 8c0c4c7..1ae5a6e 100755 --- a/src/Hackspace/Bundle/CalciferBundle/Entity/Event.php +++ b/src/Hackspace/Bundle/CalciferBundle/Entity/Event.php @@ -150,6 +150,7 @@ class Event extends BaseEntity $event->setEnd($this->enddate); $event->setSummary($this->summary); $event->setUrl($this->url); + $event->setUid($this->id); if ($this->location instanceof Location) { $location = new EventLocation(); $location->setName($this->location->name);