Skip to content

Commit

Permalink
fix: uid look and feel
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemilloy committed May 5, 2024
1 parent f712adf commit 479a494
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itsnubix/nowcal",
"version": "1.2.3",
"version": "1.2.4",
"description": "A modern PHP library for generating iCalendar v2.0 events",
"keywords": [
"icalendar",
Expand Down
2 changes: 1 addition & 1 deletion src/NowCal/NowCal.php
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ protected function formatOffset(int $offset): string
protected function createEvent(): void
{
$this->output[] = 'BEGIN:VEVENT';
$this->output[] = $this->getUidAttribute();
$this->output[] = 'UID:' . $this->getUidAttribute();

foreach ($this->event_parameters as $key) {
$this->output[] = $this->getParameter($key);
Expand Down

0 comments on commit 479a494

Please sign in to comment.