From cf84021fab06e4d8a34f49cf966f5e68fe3bfd5e Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 8 Dec 2019 22:21:53 -0800 Subject: [PATCH] =?UTF-8?q?Make=20NetNewsWire=E2=80=99s=20article=20displa?= =?UTF-8?q?y=20window=2090=20days.=20It=20was=2093=20days,=20which=20is=20?= =?UTF-8?q?weird,=20even=20though=20there=20was=20a=20good=20reason=20(3?= =?UTF-8?q?=20*=2031).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Frameworks/ArticlesDatabase/ArticlesTable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/ArticlesDatabase/ArticlesTable.swift b/Frameworks/ArticlesDatabase/ArticlesTable.swift index 4cdf8ea31..e82e9ca21 100644 --- a/Frameworks/ArticlesDatabase/ArticlesTable.swift +++ b/Frameworks/ArticlesDatabase/ArticlesTable.swift @@ -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: 3 * 31)! + private var articleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 90)! private var maximumArticleCutoffDate = NSDate.rs_dateWithNumberOfDays(inThePast: 4 * 31)! private typealias ArticlesFetchMethod = (FMDatabase) -> Set