mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-21 15:50:59 +00:00
Order notifications by createdAt instead of id
This commit is contained in:
parent
3e93ced674
commit
f251896198
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ public extension ContentDatabase {
|
|||
excludeTypes: Set<MastodonNotification.NotificationType>) -> AnyPublisher<[CollectionSection], Error> {
|
||||
ValueObservation.tracking(
|
||||
NotificationInfo.request(
|
||||
NotificationRecord.order(NotificationRecord.Columns.id.desc)
|
||||
NotificationRecord.order(NotificationRecord.Columns.createdAt.desc)
|
||||
.filter(!excludeTypes.map(\.rawValue).contains(NotificationRecord.Columns.type))).fetchAll)
|
||||
.removeDuplicates()
|
||||
.publisher(in: databaseWriter)
|
||||
|
|
Loading…
Reference in a new issue