🛠️ fix: add & improve code to handle page handling in searx & duckduckgo
This commit is contained in:
parent
71c890ba05
commit
a8791deb13
2 changed files with 5 additions and 2 deletions
|
@ -45,7 +45,7 @@ impl SearchEngine for DuckDuckGo {
|
|||
// Page number can be missing or empty string and so appropriate handling is required
|
||||
// so that upstream server recieves valid page number.
|
||||
let url: String = match page {
|
||||
1 => {
|
||||
1 | 0 => {
|
||||
format!("https://html.duckduckgo.com/html/?q={query}&s=&dc=&v=1&o=json&api=/d.js")
|
||||
}
|
||||
_ => {
|
||||
|
|
|
@ -43,7 +43,10 @@ impl SearchEngine for Searx {
|
|||
) -> Result<HashMap<String, RawSearchResult>, EngineError> {
|
||||
// Page number can be missing or empty string and so appropriate handling is required
|
||||
// so that upstream server recieves valid page number.
|
||||
let url: String = format!("https://searx.work/search?q={query}&pageno={page}");
|
||||
let url: String = match page {
|
||||
0 | 1 => format!("https://searx.work/search?q={query}&pageno=1"),
|
||||
_ => format!("https://searx.work/search?q={query}&pageno={page}"),
|
||||
};
|
||||
|
||||
// initializing headers and adding appropriate headers.
|
||||
let mut header_map = HeaderMap::new();
|
||||
|
|
Loading…
Add table
Reference in a new issue