alamin655 commited on
Commit
2b41fb9
·
unverified ·
2 Parent(s): cface54 86b1f62

Merge pull request #436 from diogocanut/fix-useless-use-of-format!

Browse files
Files changed (3) hide show
  1. Cargo.lock +1 -1
  2. Cargo.toml +1 -1
  3. src/engines/startpage.rs +1 -1
Cargo.lock CHANGED
@@ -4066,7 +4066,7 @@ checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
4066
 
4067
  [[package]]
4068
  name = "websurfx"
4069
- version = "1.5.2"
4070
  dependencies = [
4071
  "actix-cors",
4072
  "actix-files",
 
4066
 
4067
  [[package]]
4068
  name = "websurfx"
4069
+ version = "1.5.3"
4070
  dependencies = [
4071
  "actix-cors",
4072
  "actix-files",
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
  [package]
2
  name = "websurfx"
3
- version = "1.5.2"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"
 
1
  [package]
2
  name = "websurfx"
3
+ version = "1.5.3"
4
  edition = "2021"
5
  description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
6
  repository = "https://github.com/neon-mmd/websurfx"
src/engines/startpage.rs CHANGED
@@ -87,7 +87,7 @@ impl SearchEngine for Startpage {
87
  .parse_for_results(&document, |title, url, desc| {
88
  Some(SearchResult::new(
89
  title.inner_html().trim(),
90
- &format!("{}", url.inner_html().trim()),
91
  desc.inner_html().trim(),
92
  &["startpage"],
93
  ))
 
87
  .parse_for_results(&document, |title, url, desc| {
88
  Some(SearchResult::new(
89
  title.inner_html().trim(),
90
+ url.inner_html().trim(),
91
  desc.inner_html().trim(),
92
  &["startpage"],
93
  ))