-
Notifications
You must be signed in to change notification settings - Fork 257
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
Missing UID property for VEVENT #37
Comments
Is this breaking behavior? I'm marking this as an enhancement otherwise. |
Yes on my different calendar software it only import the first event and ignore all the others, and if I remember well on Outlook same thing happened. |
Yeah, I remember writing this bit. I'm incrementing the uid by 1 for each event in a multi event download. I can see there being an issue if you want to merge events into a calendar. Does anyone know if it's safe to throw a uuid in there? |
It would be nice to be able to be able to explicitly set an ID or something for it. If you're in the mood for adding at least one optional parameter to "eddEvent", it's probably reasonable to default it to a UUID, but let users override it in case they have a meaningful ID for this particular event. |
Has this been implemented? I know it's been a while, but I think this is making an issue with my project as when importing a .ics into calendars, it seems to override the previous import |
I was also having this issue. Went through the code and found the "uidDomain" parameter when initializing the ics. I set this to a random number and the calendar now knows it's a different event. Hope this helps. |
Each VEVENT should have a unique UID property. Currently they do not have one.
The text was updated successfully, but these errors were encountered: