mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Finish changes mandated by DatabaseQueue changes.
This commit is contained in:
@@ -287,12 +287,12 @@ private extension ActivityManager {
|
||||
static func identifers(for feed: WebFeed) -> [String] {
|
||||
var ids = [String]()
|
||||
ids.append(identifer(for: feed))
|
||||
|
||||
for article in feed.fetchArticles() {
|
||||
ids.append(identifer(for: article))
|
||||
if let articles = try? feed.fetchArticles() {
|
||||
for article in articles {
|
||||
ids.append(identifer(for: article))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return ids
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user