forked from alemi/upub
fix: more lenient nodeinfo
This commit is contained in:
parent
4274367285
commit
5bad5e0405
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ pub async fn nodeinfo(State(ctx): State<Context>, Path(version): Path<String>) -
|
||||||
let total_posts = None;
|
let total_posts = None;
|
||||||
let total_comments = None;
|
let total_comments = None;
|
||||||
let (software, version) = match version.as_str() {
|
let (software, version) = match version.as_str() {
|
||||||
"2.0.json" => (
|
"2.0.json" | "2.0" => (
|
||||||
nodeinfo::types::Software {
|
nodeinfo::types::Software {
|
||||||
name: "μpub".to_string(),
|
name: "μpub".to_string(),
|
||||||
version: Some(VERSION.into()),
|
version: Some(VERSION.into()),
|
||||||
|
@ -48,7 +48,7 @@ pub async fn nodeinfo(State(ctx): State<Context>, Path(version): Path<String>) -
|
||||||
},
|
},
|
||||||
"2.0".to_string()
|
"2.0".to_string()
|
||||||
),
|
),
|
||||||
"2.1.json" => (
|
"2.1.json" | "2.1" => (
|
||||||
nodeinfo::types::Software {
|
nodeinfo::types::Software {
|
||||||
name: "μpub".to_string(),
|
name: "μpub".to_string(),
|
||||||
version: Some(VERSION.into()),
|
version: Some(VERSION.into()),
|
||||||
|
|
Loading…
Reference in a new issue