Stop adding empty groups to the gallery.

This commit is contained in:
Stefan Ceriu
2024-12-13 14:58:30 +02:00
committed by Stefan Ceriu
parent 1b684d269e
commit fbdbc562ca

View File

@@ -111,8 +111,10 @@ class MediaEventsTimelineScreenViewModel: MediaEventsTimelineScreenViewModelType
let group = MediaEventsTimelineGroup(id: item.id.uniqueID.id,
title: titleForDate(item.timestamp),
items: currentItems)
currentItems = []
newGroups.append(group)
if !currentItems.isEmpty {
newGroups.append(group)
currentItems = []
}
} else {
currentItems.append(item)
}