From b7ec11039c98571356d81008004713fce654defe Mon Sep 17 00:00:00 2001 From: amtoaer Date: Sun, 31 Mar 2024 15:18:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A4=84=E7=90=86=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E7=9A=84=E7=AD=9B=E9=80=89=E6=9D=A1=E4=BB=B6=E5=8A=A0=E4=B8=8A?= =?UTF-8?q?=E5=BF=85=E9=A1=BB=E6=98=AF=E8=A7=86=E9=A2=91=E7=A8=BF=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/utils.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/utils.rs b/src/core/utils.rs index 39e5b41..ae029c1 100644 --- a/src/core/utils.rs +++ b/src/core/utils.rs @@ -213,6 +213,7 @@ pub async fn unhandled_videos_pages( .eq(favorite_model.id) .and(video::Column::Valid.eq(true)) .and(video::Column::DownloadStatus.lt(Status::handled())) + .and(video::Column::Category.eq(2)) .and(video::Column::SinglePage.is_not_null()), ) .find_with_related(page::Entity)