1
0
Fork 0

chore:

This commit is contained in:
aviac 2024-05-11 13:02:06 +02:00
parent a786cd85ad
commit 8188ba5f43
No known key found for this signature in database
GPG key ID: 644781002BDEA982

View file

@ -274,8 +274,9 @@ where
raw_url
.as_ref()
.map(parse_ssh_url)
.map(|res| res.map_err(DE::custom).map(Some))
.unwrap_or(Ok(None))
.map(|res| res.map_err(DE::custom))
.transpose()
.or(Ok(None))
}
fn parse_ssh_url(raw_url: &String) -> Result<Url, url::ParseError> {