python-caldav / caldav

Apache License 2.0
321 stars 95 forks source link

"MAILTO:" in uppercase in change_attendee_status #388

Open alexhook opened 6 months ago

alexhook commented 6 months ago

Hi!

I have a problem during the attendee status change because some mail services have "MAILTO:" in uppercase. Can you please make the following change here?

from:

strip_mailto = lambda x: str(x).replace("mailto:", "").lower()

to:

strip_mailto = lambda x: str(x).lower().replace("mailto:", "")
tobixen commented 6 months ago

Could you create a pull request?