Fix error when no facets are specifed #16

Merged
emma merged 1 commits from BlankParenthesis/hopper:fix-filter into main 2022-12-24 04:06:22 +00:00
1 changed files with 4 additions and 1 deletions

View File

@ -51,7 +51,10 @@ impl HopperClient {
.to_string();
facets.push(package_type_facet);
}
params.push(("facets", format!("[{}]", facets.join(","))));
if !facets.is_empty() {
params.push(("facets", format!("[{}]", facets.join(","))));
}
let url = reqwest::Url::parse_with_params(url.as_str(), &params)?;
info!("GET {}", url);