Skip to content

Commit

Permalink
Merge pull request #4284 from plrichardson/patch-1
Browse files Browse the repository at this point in the history
Fix OpenAllStarredArticles.applescript
  • Loading branch information
brentsimmons authored Sep 10, 2024
2 parents fc36c5e + a8e9e26 commit 933211b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AppleScript/Safari-OpenAllStarredArticles.applescript
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ set safariWindow to missing value
--for each one of those, open a new tab in Safari

tell application "NetNewsWire"
set allAccounts to every account
set allAccounts to every account whose active is true
repeat with nthAccount in allAccounts
set userFeeds to allFeeds of nthAccount
set userFeeds to allWebFeeds of nthAccount
repeat with nthFeed in userFeeds
set starredArticles to (get every article of nthFeed where starred is true)
repeat with nthArticle in starredArticles
Expand Down

0 comments on commit 933211b

Please sign in to comment.