1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00

fix lockfile

This commit is contained in:
Rob Ede
2022-02-02 15:21:49 +00:00
parent 85d1503ac2
commit 06b024d6fe
2 changed files with 76 additions and 83 deletions

View File

@ -101,9 +101,9 @@ fn get_error_response<B>(
Ok(body) => HttpResponse::build(res.status())
.content_type(ContentType::html())
.body(body),
Err(_) => fallback(error).into(),
Err(_) => fallback(error),
}
}
None => fallback(error).into(),
None => fallback(error),
}
}