mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-26 09:33:25 +01:00
Remove maximumArticleCutoffDate; just use articleCutoffDate.
This commit is contained in:
parent
cf84021fab
commit
e3e07e771d
@ -27,7 +27,6 @@ final class ArticlesTable: DatabaseTable {
|
|||||||
|
|
||||||
// TODO: update articleCutoffDate as time passes and based on user preferences.
|
// TODO: update articleCutoffDate as time passes and based on user preferences.
|
||||||
private var articleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 90)!
|
private var articleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 90)!
|
||||||
private var maximumArticleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 4 * 31)!
|
|
||||||
|
|
||||||
private typealias ArticlesFetchMethod = (FMDatabase) -> Set<Article>
|
private typealias ArticlesFetchMethod = (FMDatabase) -> Set<Article>
|
||||||
|
|
||||||
@ -795,9 +794,9 @@ private extension ArticlesTable {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if let datePublished = article.datePublished {
|
if let datePublished = article.datePublished {
|
||||||
return datePublished < maximumArticleCutoffDate
|
return datePublished < articleCutoffDate
|
||||||
}
|
}
|
||||||
return article.status.dateArrived < maximumArticleCutoffDate
|
return article.status.dateArrived < articleCutoffDate
|
||||||
}
|
}
|
||||||
|
|
||||||
func filterIncomingArticles(_ articles: Set<Article>) -> Set<Article> {
|
func filterIncomingArticles(_ articles: Set<Article>) -> Set<Article> {
|
||||||
|
Loading…
Reference in New Issue
Block a user