Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improved compatibility all day events for Microsoft products #132

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Components/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,10 @@ private function resolveProperties(ComponentPayload $payload): self
$this->transparent,
fn () => TextProperty::create('TRANSP', 'TRANSPARENT')
)
->optional(
$this->isFullDay,
fn () => TextProperty::create('X-MICROSOFT-CDO-ALLDAYEVENT', 'TRUE')
)
->optional(
$this->organizer,
fn () => CalendarAddressProperty::create('ORGANIZER', $this->organizer)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ BEGIN:VEVENT
UID:uuid_2
DTSTAMP:20190306T150000Z
SUMMARY:Laracon online
X-MICROSOFT-CDO-ALLDAYEVENT:TRUE
DTSTART;VALUE=DATE:20190306
DTEND;VALUE=DATE:20190307
END:VEVENT
Expand Down
Loading