Skip to content

Commit

Permalink
Revert "fix(Event): Add missing : for ORGANIZERs"
Browse files Browse the repository at this point in the history
This reverts commit e8b3885.
  • Loading branch information
sebbo2002 committed Sep 15, 2024
1 parent 1e28ca4 commit 89390f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ export default class ICalEvent {

// ORGANIZER
if (this.data.organizer) {
g += 'ORGANIZER;CN="' + escape(this.data.organizer.name, true) + '":';
g += 'ORGANIZER;CN="' + escape(this.data.organizer.name, true) + '"';

if (this.data.organizer.sentBy) {
g += ';SENT-BY="mailto:' + escape(this.data.organizer.sentBy, true) + '"';
Expand Down

0 comments on commit 89390f6

Please sign in to comment.