diff --git a/server/src/newsreader.rs b/server/src/newsreader.rs index 6fda94d..b33a566 100644 --- a/server/src/newsreader.rs +++ b/server/src/newsreader.rs @@ -180,10 +180,10 @@ pub async fn thread(pool: &PgPool, thread_id: String) -> Result vec![ - Selector::parse("article.content").unwrap(), + Selector::parse("article.content .post-block").unwrap(), ], "blog.cloudflare.com".to_string() => vec![ - Selector::parse(".author-lists").unwrap(), + Selector::parse(".author-lists .author-name-tooltip").unwrap(), Selector::parse(".post-full-content").unwrap() ], "engineering.fb.com".to_string() => vec![ @@ -213,11 +213,11 @@ pub async fn thread(pool: &PgPool, thread_id: String) -> Result