We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ef8d63 commit 7b2e6e0Copy full SHA for 7b2e6e0
1 file changed
src/Types/Event.php
@@ -112,7 +112,7 @@ public function toICalendarEvent(string|CarbonInterface $date): ?ICalendarEvent
112
->startsAt($immutableDate->setTimeFromTimeString($this->startTime()))
113
->endsAt($immutableDate->setTimeFromTimeString($this->endTime()));
114
115
- if (! is_null($address = $this->event->address ?? $this->event->location)) {
+ if (! is_null($address = $this->event->address ?? $this->event->get('location'))) {
116
$iCalEvent->address($address);
117
}
118
0 commit comments