Improve error handling.
parent
6456625716
commit
c25ac2d6c0
|
@ -338,7 +338,11 @@ class BaseNetwork {
|
|||
if (response.ok) {
|
||||
resolve(body);
|
||||
} else {
|
||||
reject(new HTTPError(json.detail || json.non_field_errors));
|
||||
if (json) {
|
||||
reject(new HTTPError(json.detail || json.non_field_errors || JSON.stringify(json)));
|
||||
} else {
|
||||
reject(new HTTPError(body));
|
||||
}
|
||||
}
|
||||
}).catch((error) => {
|
||||
reject(error);
|
||||
|
|
Loading…
Reference in New Issue