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)