Skip to content
Snippets Groups Projects
Commit e7bd0ba7 authored by Andreas Valder's avatar Andreas Valder
Browse files

Merge branch 'patch-1' into 'master'

Fix Issue #382

See merge request !32
parents bf38fa18 2feb1618
No related branches found
No related tags found
1 merge request!32Fix Issue #382
......@@ -139,10 +139,11 @@ def fetch_ro_course_events(item):
args = urllib.parse.parse_qs(url.query)
if 'pStpSpNr' in args: # Legacy URLs
id = args['pStpSpNr'][0]
elif url.path.split('/')[-2] == 'courses': # New URLs
elif len(url.path.split('/')) > 1 and url.path.split('/')[-2] == 'courses': # New URLs
id = url.path.split('/')[-1]
else:
flash("Ungültige URL: '"+i['url']+"'")
flash("Ungültige URL: '"+url.geturl()+"'")
return [] #cant get events from wrong URL so just return empty list
cal = icalendar.Calendar().from_ical(fetch_ro_course_ical(id))
events = []
for comp in cal.subcomponents:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment