From 7a4f5c500d0e79f1ed0cf1c5ff7db5c3c9b0d511 Mon Sep 17 00:00:00 2001 From: Jan Lukas Gernert Date: Tue, 1 Aug 2023 19:35:22 +0200 Subject: [PATCH] 400 --- article_scraper/src/full_text_parser/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/article_scraper/src/full_text_parser/mod.rs b/article_scraper/src/full_text_parser/mod.rs index d5803c9..65b3912 100644 --- a/article_scraper/src/full_text_parser/mod.rs +++ b/article_scraper/src/full_text_parser/mod.rs @@ -626,7 +626,7 @@ impl FullTextParser { .set_property("class", "videoWrapper") .ok() .and_then(|()| node.set_property("width", "100%").ok()) - .and_then(|()| node.set_property("height", "500").ok()) + .and_then(|()| node.set_property("height", "400").ok()) .ok_or_else(|| { node.unlink(); video_wrapper.add_child(&mut node)