Reversed terminated meetings list order
This commit is contained in:
parent
6acc6b6bb0
commit
868daa2078
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class ScheduledConferencesViewModel : ViewModel() {
|
||||||
val limit = conferenceInfo.dateTime + conferenceInfo.duration
|
val limit = conferenceInfo.dateTime + conferenceInfo.duration
|
||||||
if (limit >= now) continue // This isn't a terminated conference, don't display it
|
if (limit >= now) continue // This isn't a terminated conference, don't display it
|
||||||
val data = ScheduledConferenceData(conferenceInfo)
|
val data = ScheduledConferenceData(conferenceInfo)
|
||||||
conferencesList.add(data)
|
conferencesList.add(0, data) // Keep terminated meetings list in reverse order to always display most recent on top
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
val oneHourAgo = now - 7200 // Show all conferences from 2 hours ago and forward
|
val oneHourAgo = now - 7200 // Show all conferences from 2 hours ago and forward
|
||||||
|
|
Loading…
Reference in a new issue