mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
Fix stack overflow in request::Error mapping
This commit is contained in:
parent
8d3debb6d4
commit
ecaba5e655
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