mirror of
https://gitlab.com/news-flash/article_scraper.git
synced 2025-07-08 16:40:00 +02:00
fix corrupt filename
This commit is contained in:
parent
98348b7e59
commit
71055eed1c
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ impl Article {
|
||||||
if let Some(ref html) = self.html {
|
if let Some(ref html) = self.html {
|
||||||
if let Ok(()) = std::fs::create_dir_all(&path) {
|
if let Ok(()) = std::fs::create_dir_all(&path) {
|
||||||
let mut file_name = match self.title.clone() {
|
let mut file_name = match self.title.clone() {
|
||||||
Some(file_name) => file_name,
|
Some(file_name) => file_name.replace("/", "_"),
|
||||||
None => "Unknown Title".to_owned(),
|
None => "Unknown Title".to_owned(),
|
||||||
};
|
};
|
||||||
file_name.push_str(".html");
|
file_name.push_str(".html");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue