mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-25 13:01:08 +00:00
Fix wrong condition, resulting in 404 for valid NodeInfo endpoints (#464)
* Fix wrong condition, resulting in 404 for valid NodeInfo endpoints * Forgot to remove that dbg!
This commit is contained in:
parent
fe6e69d7c4
commit
b52b8fc880
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue