Fix wrong condition, resulting in 404 for valid NodeInfo endpoints #464

Merged
elegaanz merged 2 commits from fix-nodeinfo into master 2019-03-12 16:00:23 +00:00

View file

@ -218,7 +218,7 @@ pub fn shared_inbox(conn: DbConn, data: SignedJson<serde_json::Value>, headers:
#[get("/nodeinfo/<version>")]
pub fn nodeinfo(conn: DbConn, version: String) -> Result<Json<serde_json::Value>, ErrorPage> {
if version != "2.0" || version != "2.1" {
if version != "2.0" && version != "2.1" {
return Err(ErrorPage::from(Error::NotFound));
}