diff --git a/crates/blend-db/src/repo/entry.rs b/crates/blend-db/src/repo/entry.rs index daa024f8..38b2792f 100644 --- a/crates/blend-db/src/repo/entry.rs +++ b/crates/blend-db/src/repo/entry.rs @@ -151,7 +151,7 @@ impl EntryRepo { &self, feed_uuid: &uuid::Uuid, ) -> DbResult> { - sqlx::query_as::<_, model::Entry>("SELECT * FROM entries WHERE feed_uuid = ?1 AND content_scraped_html IS NULL AND scraped_at IS NULL") + sqlx::query_as::<_, model::Entry>("SELECT * FROM entries WHERE feed_uuid = ?1 AND content_html IS NOT NULL AND content_scraped_html IS NULL AND scraped_at IS NULL") .bind(feed_uuid) .fetch_all(&self.db) .await