From 1296f81c37f8fdd181126c04eaa3562c1e40fcfd Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Sat, 7 Jun 2025 12:38:52 +0900 Subject: [PATCH] Fix --- services/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/database.ts b/services/database.ts index c7f8ed2..a059f81 100644 --- a/services/database.ts +++ b/services/database.ts @@ -229,7 +229,7 @@ export async function getUnprocessedArticles( SELECT * FROM articles WHERE processed = 0 - AND pub_date >= datetime('now','-2 days') + AND pub_date >= datetime('now','-18 hours') ORDER BY pub_date DESC ${limit ? `LIMIT ${limit}` : ""} `;