mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-21 21:48:21 -05:00
fix: added a config parse backup
This commit is contained in:
parent
bfeb81270c
commit
286bcf1bd3
@ -139,6 +139,16 @@ async fn results(
|
|||||||
// We sort the list of engine so the cache keys will match between users. The cookie's list of engines is unordered.
|
// We sort the list of engine so the cache keys will match between users. The cookie's list of engines is unordered.
|
||||||
engines.sort();
|
engines.sort();
|
||||||
cache_key = cache_key + &(engines.join(""));
|
cache_key = cache_key + &(engines.join(""));
|
||||||
|
} else {
|
||||||
|
let mut engines: Vec<String> = config
|
||||||
|
.upstream_search_engines
|
||||||
|
.iter()
|
||||||
|
.filter(|map| *map.1)
|
||||||
|
.map(|map| String::from(&(*map.0)))
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
engines.sort();
|
||||||
|
cache_key = cache_key + &(engines.join(""));
|
||||||
}
|
}
|
||||||
|
|
||||||
// fetch the cached results json.
|
// fetch the cached results json.
|
||||||
|
Loading…
Reference in New Issue
Block a user