1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 18:50:05 +00:00

Merge pull request #809 from sasjs/webout-issue

fix(sasjs-request-client): fixed response parsing
This commit is contained in:
Yury Shkoda
2023-05-10 16:26:13 +03:00
committed by GitHub

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]