mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Fix stack overflow in request::Error mapping
This commit is contained in:
parent
90514daafd
commit
793c031f82
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue