Don't return 500 if given a URL with no query part.
- Legacy-Id: 3017
This commit is contained in:
parent
5b418aee82
commit
2fc4b1bc3c
|
@ -336,7 +336,7 @@ def ical_agenda(request, num=None):
|
|||
wgs = IETFWG.objects.filter(status=IETFWG.ACTIVE).order_by('group_acronym__acronym')
|
||||
rgs = IRTF.objects.all().order_by('acronym')
|
||||
areas = Area.objects.filter(status=Area.ACTIVE).order_by('area_acronym__acronym')
|
||||
filter = (request.META['QUERY_STRING']).lower().split(',');
|
||||
filter = (request.META.get('QUERY_STRING','')).lower().split(',');
|
||||
include = set(filter)
|
||||
|
||||
for slot in timeslots:
|
||||
|
|
Loading…
Reference in a new issue