fix: changed dereferencing
This commit is contained in:
parent
286bcf1bd3
commit
4f4cb220cc
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue