fix: changed dereferencing

This commit is contained in:
ddotthomas 2023-12-30 22:18:15 -07:00
parent 286bcf1bd3
commit 4f4cb220cc

View file

@ -144,7 +144,7 @@ async fn results(
.upstream_search_engines .upstream_search_engines
.iter() .iter()
.filter(|map| *map.1) .filter(|map| *map.1)
.map(|map| String::from(&(*map.0))) .map(|map| String::from(map.0))
.collect(); .collect();
engines.sort(); engines.sort();