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 40d820d4f4
commit 681daf50ea

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)
}