diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index b46af075787..b2c5a2d2152 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -1492,7 +1492,8 @@ public function fromASAppointment(Horde_ActiveSync_Message_Appointment $message) } /* Meeting requests come with their own UID value. */ - if (empty($this->uid) && !empty($message->getUid())) { + $client_uid = $message->getUid(); + if (empty($this->uid) && !empty($client_uid)) { $this->uid = $message->getUid(); }