Update RSCore.

This commit is contained in:
Brent Simmons
2019-12-31 18:58:57 -08:00
parent df13d108aa
commit cea34c9e49
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ final class ArticlesTable: DatabaseTable {
}()
// TODO: update articleCutoffDate as time passes and based on user preferences.
private var articleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 90)!
private let articleCutoffDate = Date().bySubtracting(days: 90)
private typealias ArticlesFetchMethod = (FMDatabase) -> Set<Article>