Recent past meetings are shown as past meetings, so sort them like past meetings. Fixes side-comment in #3101. Commit ready for merge.

- Legacy-Id: 18204
This commit is contained in:
Robert Sparks 2020-07-20 19:43:35 +00:00
parent 6b88439175
commit 62434faf54

View file

@ -74,6 +74,7 @@ def group_sessions(sessions):
# List future and in_progress meetings with ascending time, but past
# meetings with descending time
recent.reverse()
past.reverse()
return future, in_progress, recent, past