mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-10 22:45:02 +00:00
Adjust for updated Rust version
This commit is contained in:
parent
5976006859
commit
6836f26d9a
1 changed files with 3 additions and 8 deletions
|
@ -46,13 +46,9 @@ async fn get_webfinger_response(
|
||||||
|
|
||||||
let regex_parsed = WEBFINGER_COMMUNITY_REGEX
|
let regex_parsed = WEBFINGER_COMMUNITY_REGEX
|
||||||
.captures(&info.resource)
|
.captures(&info.resource)
|
||||||
.map(|c| c.get(1));
|
.map(|c| c.get(1))
|
||||||
// TODO: replace this with .flatten() once we are running rust 1.40
|
.flatten();
|
||||||
let regex_parsed_flattened = match regex_parsed {
|
let community_name = match regex_parsed {
|
||||||
Some(s) => s,
|
|
||||||
None => None,
|
|
||||||
};
|
|
||||||
let community_name = match regex_parsed_flattened {
|
|
||||||
Some(c) => c.as_str(),
|
Some(c) => c.as_str(),
|
||||||
None => return Err(format_err!("not_found")),
|
None => return Err(format_err!("not_found")),
|
||||||
};
|
};
|
||||||
|
@ -79,7 +75,6 @@ async fn get_webfinger_response(
|
||||||
{
|
{
|
||||||
"rel": "self",
|
"rel": "self",
|
||||||
"type": "application/activity+json",
|
"type": "application/activity+json",
|
||||||
// Yes this is correct, this link doesn't include the `.json` extension
|
|
||||||
"href": community_url
|
"href": community_url
|
||||||
}
|
}
|
||||||
// TODO: this also needs to return the subscribe link once that's implemented
|
// TODO: this also needs to return the subscribe link once that's implemented
|
||||||
|
|
Loading…
Reference in a new issue