mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Handle text response errors (#301)
* Parse text error response to json Message field * Do not output object.toString, prefer object serialization
This commit is contained in:
@@ -1282,6 +1282,8 @@ export class ApiService implements ApiServiceAbstraction {
|
||||
let responseJson: any = null;
|
||||
if (this.isJsonResponse(response)) {
|
||||
responseJson = await response.json();
|
||||
} else if (this.isTextResponse(response)) {
|
||||
responseJson = {Message: await response.text()};
|
||||
}
|
||||
|
||||
return new ErrorResponse(responseJson, response.status, tokenError);
|
||||
@@ -1357,4 +1359,9 @@ export class ApiService implements ApiServiceAbstraction {
|
||||
const typeHeader = response.headers.get('content-type');
|
||||
return typeHeader != null && typeHeader.indexOf('application/json') > -1;
|
||||
}
|
||||
|
||||
private isTextResponse(response: Response): boolean {
|
||||
const typeHeader = response.headers.get('content-type');
|
||||
return typeHeader != null && typeHeader.indexOf('text') > -1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user