mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Don't do anything if there are more than 500 URLs
This commit is contained in:
@@ -341,6 +341,10 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations {
|
||||
}
|
||||
|
||||
func openArticleURLs(_ urlStrings: [String]) {
|
||||
if urlStrings.count > 500 {
|
||||
return
|
||||
}
|
||||
|
||||
func doOpenURLs() {
|
||||
for urlString in urlStrings {
|
||||
Browser.open(urlString, inBackground: false)
|
||||
|
||||
Reference in New Issue
Block a user