0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 05:58:21 -05:00

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();