diff --git a/AppleScript/Excel-CreateFeedStatisticsSpreadsheet.applescript b/AppleScript/Excel-CreateFeedStatisticsSpreadsheet.applescript index 9f738094f..96d1f39e1 100644 --- a/AppleScript/Excel-CreateFeedStatisticsSpreadsheet.applescript +++ b/AppleScript/Excel-CreateFeedStatisticsSpreadsheet.applescript @@ -36,8 +36,8 @@ set totalFeeds to 0 tell application "NetNewsWire" set allAccounts to every account repeat with nthAccount in allAccounts - set allFeeds to every webFeed of nthAccount - repeat with nthFeed in allFeeds + set userFeeds to allFeeds of nthAccount + repeat with nthFeed in userFeeds set feedname to name of nthFeed set articleCount to count (get every article of nthFeed) set readCount to count (get every article of nthFeed where read is true) diff --git a/AppleScript/Safari-OpenAllStarredArticles.applescript b/AppleScript/Safari-OpenAllStarredArticles.applescript index a1cba2ec0..662f7025e 100644 --- a/AppleScript/Safari-OpenAllStarredArticles.applescript +++ b/AppleScript/Safari-OpenAllStarredArticles.applescript @@ -38,8 +38,8 @@ set safariWindow to missing value tell application "NetNewsWire" set allAccounts to every account repeat with nthAccount in allAccounts - set allFeeds to every webFeed of nthAccount - repeat with nthFeed in allFeeds + set userFeeds to allFeeds of nthAccount + repeat with nthFeed in userFeeds set starredArticles to (get every article of nthFeed where starred is true) repeat with nthArticle in starredArticles my openTabInSafari(url of nthArticle)