Fixing nodeinfo error type.

This commit is contained in:
Dessalines 2020-04-21 20:34:37 -04:00
parent 18e570b021
commit 0425e8b114
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ pub fn config(cfg: &mut web::ServiceConfig) {
.route("/.well-known/nodeinfo", web::get().to(node_info_well_known));
}
async fn node_info_well_known() -> Result<HttpResponse<Body>, Error> {
async fn node_info_well_known() -> Result<HttpResponse<Body>, failure::Error> {
let node_info = NodeInfoWellKnown {
links: NodeInfoWellKnownLinks {
rel: Url::parse("http://nodeinfo.diaspora.software/ns/schema/2.0")?,