handle inner JSON parsing errors

pull/823/head
Ryan Tharp 5 years ago
parent 4a65a5aa12
commit 145cfd762d

@ -85,7 +85,20 @@ const sendToProxy = async (options = {}, targetNode) => {
try {
const jsonRes = JSON.parse(plaintext);
// emulate nodeFetch response...
jsonRes.json = () => JSON.parse(jsonRes.body);
jsonRes.json = () => {
try {
return JSON.parse(jsonRes.body);
} catch(e) {
log.error(
'lokiRpc sendToProxy error',
e.code,
e.message,
'json',
jsonRes.body
);
}
return false;
}
return jsonRes;
} catch (e) {
log.error(

Loading…
Cancel
Save