Open ruuttt opened 1 year ago
Greetings, thank you for catching this issue 👍 Will look into and get back in the beginning of January
I'm also hitting the same bug.
I also see this issue. The fix should be easy. The problem is here. This creates one EmailAddress
that is shared between all calls to that function. Make the default None
and creating the EmailAddress
in the function body will fix the issue.
I also notice that the status on attendee is a dictionary rather than an object. I'm using get_calendar_view
. .response
doesn't work I need result[0].attendees[0].status['response']
.
Thanks you for creating the library. I think I found a bug. Below you can find the steps to reproduce the bug.
When I would create an event using your example code and now would invite two instead of one attendee:
and store the calendar_identifier in a database
and when I later on would extract the event like this
and loop over the attendees, like this
they all have the same email address, output:
While I would expect this output:
Versions used:
I would really appreciate it if you would be able to solve this bug in your next release.