mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Fix sort order in timeline.
This commit is contained in:
@@ -377,7 +377,7 @@ class TimelineViewController: NSViewController, NSTableViewDelegate, NSTableView
|
||||
|
||||
private func articleComparator(_ article1: Article, article2: Article) -> Bool {
|
||||
|
||||
return article1.logicalDatePublished < article2.logicalDatePublished
|
||||
return article1.logicalDatePublished > article2.logicalDatePublished
|
||||
}
|
||||
|
||||
private func articlesSortedByDate(_ articles: Set<Article>) -> [Article] {
|
||||
|
||||
Reference in New Issue
Block a user