Don't fail hard if it was not possible to get the ical content

This commit is contained in:
Fabio Manganiello 2018-12-20 16:47:07 +01:00
parent b3ffb29726
commit e2f7213697
1 changed files with 13 additions and 2 deletions

View File

@ -69,10 +69,21 @@ class IcalCalendarPlugin(Plugin, CalendarInterface):
"""
events = []
response = requests.get(self.url)
try:
response = requests.get(self.url)
except Exception as e:
self.logger.exception(e)
return events
if response.ok:
calendar = Calendar.from_ical(response.text)
calendar = None
try:
calendar = Calendar.from_ical(response.text)
except Exception as e:
self.logger.exception(e)
return events
for event in calendar.walk():
if event.name != 'VEVENT':
continue # Not an event