From 3f42a429ee0a39db28e322d40fe70bb187e3d44d Mon Sep 17 00:00:00 2001 From: grenade Date: Mon, 22 Dec 2025 01:54:51 -0800 Subject: [PATCH] fix(route/huggingface): Add allowEmpty option to huggingface daily papers response (#20739) Fixes https://github.com/DIYgod/RSSHub/issues/20738 --- lib/routes/huggingface/daily-papers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/routes/huggingface/daily-papers.ts b/lib/routes/huggingface/daily-papers.ts index 4489c9eb14..acfb3351a9 100644 --- a/lib/routes/huggingface/daily-papers.ts +++ b/lib/routes/huggingface/daily-papers.ts @@ -81,6 +81,7 @@ async function handler(ctx) { .toSorted((a, b) => b.upvotes - a.upvotes); return { + allowEmpty: true, title: 'Huggingface Daily Papers', link: 'https://huggingface.co/papers', item: items,