🧹 chore: make github actions happy (#205)

This commit is contained in:
neon_arch 2023-09-12 17:59:33 +03:00
parent fb231de416
commit 1a222217c4
3 changed files with 11 additions and 14 deletions

View file

@ -230,7 +230,8 @@ async fn results(
// UI and use that.
let mut results: SearchResults = match req.cookie("appCookie") {
Some(cookie_value) => {
let cookie_value: Cookie = serde_json::from_str(cookie_value.name_value().1)?;
let cookie_value: Cookie<'_> =
serde_json::from_str(cookie_value.name_value().1)?;
let engines: Vec<EngineHandler> = cookie_value
.engines