damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 696d341f793c3240cbaa226a3ed50509dafd3e84
parent 500845f6192a6ebc28c301e2992f458a89d15a1a
Author: William Casarin <jb55@jb55.com>
Date:   Sun,  1 Jan 2023 09:37:31 -0800

DMs: maybe fix sorting bug

Changlog-Fixed: Potential fix for DM sorting issue

Diffstat:
Mdamus/Models/HomeModel.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Models/HomeModel.swift b/damus/Models/HomeModel.swift @@ -423,7 +423,7 @@ class HomeModel: ObservableObject { if a.1.events.count > 0 && b.1.events.count > 0 { return a.1.events.last!.created_at > b.1.events.last!.created_at } - return true + return false } } }