fix satisfactory article 404 by excluding them
This commit is contained in:
parent
63acd248ec
commit
7d14796e0a
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ async fn fetch_recipe_links(url: String) -> Vec<String> {
|
||||||
.and_then(|attr| Some(attr?.as_utf8_str().to_string())) // Convert to String
|
.and_then(|attr| Some(attr?.as_utf8_str().to_string())) // Convert to String
|
||||||
})
|
})
|
||||||
.filter(|e| {
|
.filter(|e| {
|
||||||
e.contains("/show") && !e.contains("satisfactoryplus") && !e.contains("game-schematic")
|
e.contains("/show") && !e.contains("game-schematic") && !e.contains("satisfactoryplus")
|
||||||
})
|
})
|
||||||
.collect::<HashSet<_>>()
|
.collect::<HashSet<_>>()
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
|
Loading…
Add table
Reference in a new issue