mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Fix bug where contextual menu for article might not have Share menu filled in properly. (Was looking at selectedArticles rather than the intended articles.)
This commit is contained in:
@@ -185,7 +185,7 @@ private extension TimelineViewController {
|
||||
return nil
|
||||
}
|
||||
|
||||
let sortedArticles = selectedArticles.sortedByDate(.orderedAscending)
|
||||
let sortedArticles = articles.sortedByDate(.orderedAscending)
|
||||
let items = sortedArticles.map { ArticlePasteboardWriter(article: $0) }
|
||||
let standardServices = NSSharingService.sharingServices(forItems: items)
|
||||
let customServices = SharingServicePickerDelegate.customSharingServices(for: items)
|
||||
|
||||
Reference in New Issue
Block a user