From 7915ed7a44bcd7ac4e9fb8923add12f6eae9fa0e Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Sat, 7 Jun 2025 12:42:06 +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 a059f81..673f5d4 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','-18 hours') + AND pub_date >= datetime('now','-6 hours') ORDER BY pub_date DESC ${limit ? `LIMIT ${limit}` : ""} `;