We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b81be04 commit ecb0e75Copy full SHA for ecb0e75
1 file changed
ietf/meeting/views.py
@@ -960,7 +960,8 @@ def json_agenda(request, num=None ):
960
sessdict['start'] = asgn.timeslot.utc_start_time().strftime("%Y-%m-%dT%H:%M:%SZ")
961
sessdict['duration'] = str(asgn.timeslot.duration)
962
sessdict['location'] = asgn.room_name
963
- locations.add(asgn.timeslot.location)
+ if asgn.timeslot.location: # Some socials have an assignment but no location
964
+ locations.add(asgn.timeslot.location)
965
if asgn.session.agenda():
966
sessdict['agenda'] = asgn.session.agenda().href()
967
0 commit comments