1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 04:50:06 +00:00

fix(sasjs-request-client): fixed response parsing

This commit is contained in:
Yury Shkoda
2023-05-10 16:07:25 +03:00
parent 2482a0c674
commit a14a1663fc

View File

@@ -48,7 +48,7 @@ export class SasjsRequestClient extends RequestClient {
const splittedResponse = response.data.split(SASJS_LOGS_SEPARATOR)
webout = splittedResponse[0]
if (webout) parsedResponse = webout
if (webout !== undefined) parsedResponse = webout
log = splittedResponse[1]
printOutput = splittedResponse[2]