diff --git a/importer.py b/importer.py
index 90e893b100043ce1930ae4840871c48d25ce2f4b..6babd624e26744523fb69f952218cde55a6b4678 100644
--- a/importer.py
+++ b/importer.py
@@ -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
-		id = url.path.split('/')[-1]
-	else:
-		flash("Ungültige URL: '"+i['url']+"'")
+    elif len(url.path.split('/')) > 1 and url.path.split('/')[-2] == 'courses': # New URLs
+        id = url.path.split('/')[-1]
+    else:
+        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: