diff --git a/src/pretix/presale/ical.py b/src/pretix/presale/ical.py index 464827a65..ed1f51d69 100644 --- a/src/pretix/presale/ical.py +++ b/src/pretix/presale/ical.py @@ -150,7 +150,7 @@ def get_private_icals(event, positions): vevent.add('description').value = description vevent.add('dtstamp').value = creation_time if ev.location: - vevent.add('location').value = str(ev.location) + vevent.add('location').value = ", ".join(l.strip() for l in str(ev.location).splitlines() if l.strip()) vevent.add('uid').value = 'pretix-{}-{}-{}@{}'.format( event.organizer.slug,