Remove references to isFeedProvider.

This commit is contained in:
Brent Simmons
2023-06-25 16:15:21 -07:00
parent 3aeda820e4
commit 7e4c5be30f
4 changed files with 14 additions and 35 deletions

View File

@@ -152,14 +152,9 @@ public final class WebFeed: Feed, Renamable, Hashable {
public var isArticleExtractorAlwaysOn: Bool? {
get {
if isFeedProvider == true { return false } // not an option for FeedProviders
return metadata.isArticleExtractorAlwaysOn
metadata.isArticleExtractorAlwaysOn
}
set {
if isFeedProvider == true {
metadata.isArticleExtractorAlwaysOn = false
return
}
metadata.isArticleExtractorAlwaysOn = newValue
}
}