Fix stack overflow in request::Error mapping

This commit is contained in:
Damien Elmes 2023-09-05 14:12:38 +10:00
parent 8d3debb6d4
commit ecaba5e655

View file

@ -89,7 +89,7 @@ impl From<&reqwest::Error> for AnkiError {
impl From<reqwest::Error> for AnkiError {
fn from(err: reqwest::Error) -> Self {
err.into()
(&err).into()
}
}