mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
always show raw if requested
This commit is contained in:
parent
d4c2b20a25
commit
bc475a668e
@ -69,7 +69,7 @@ export abstract class BaseProgram {
|
|||||||
|
|
||||||
protected getMessage(response: Response) {
|
protected getMessage(response: Response) {
|
||||||
const message = (response.data as MessageResponse);
|
const message = (response.data as MessageResponse);
|
||||||
if (process.env.BW_RAW === 'true' && message.raw != null) {
|
if (process.env.BW_RAW === 'true') {
|
||||||
return message.raw;
|
return message.raw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user