0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 06:22:53 -04: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
.iter()
.filter(|map| *map.1)
.map(|map| String::from(&(*map.0)))
.map(|map| String::from(map.0))
.collect();
engines.sort();