Skip to content
Snippets Groups Projects
Verified Commit f6fce092 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix generation of attendees list in meeting dict

parent 87a05968
No related branches found
No related tags found
No related merge requests found
...@@ -171,10 +171,7 @@ class Meeting: ...@@ -171,10 +171,7 @@ class Meeting:
elif name == "attendees": elif name == "attendees":
res["attendees"] = { res["attendees"] = {
"attendee": [ "attendee": [
{ attendee.to_dict() for attendee in self.attendees.values()
full_name: attendee.to_dict()
for full_name, attendee in self.attendees.items()
}
] ]
} }
elif value is not None: elif value is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment