Skip to content

Commit

Permalink
chore: fix duplicate uid
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemilloy committed May 5, 2024
1 parent 479a494 commit 8a622e0
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.4",
"version": "1.2.5",
"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 @@ -650,7 +650,7 @@ protected function getEventParametersAttribute(): array
return array_filter(
array_merge(static::VEVENT, static::ALLOWED),
fn($key) => match ($key) {
'method', 'timezone' => false,
'uid', 'method', 'timezone' => false,
default => $this->required($key) || $this->has($key),
},
);
Expand Down

0 comments on commit 8a622e0

Please sign in to comment.