copyExternalURL should copy externalLinks

This commit is contained in:
Nate Weaver
2022-10-07 21:30:29 -05:00
parent fd75387d9c
commit 48c5afffcd

View File

@@ -335,7 +335,7 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations {
}
@IBAction func copyExternalURL(_ sender: Any?) {
if let links = selectedArticles?.compactMap({ $0.preferredLink }) {
if let links = selectedArticles?.compactMap({ $0.externalLink }) {
URLPasteboardWriter.write(urlStrings: links, to: .general)
}
}