1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

fix: parsing _webout from response regardless of debug status

This commit is contained in:
Allan Bowe
2021-11-18 19:56:12 +00:00
parent 7c5adeabb5
commit 81d959c7c1

View File

@@ -158,7 +158,7 @@ export class WebJobExecutor extends BaseJobExecutor {
this.requestClient!.appendRequest(res, sasJob, config.debug)
}
if (this.serverType === ServerType.Sasjs && !config.debug) {
if (this.serverType === ServerType.Sasjs) {
jsonResponse = JSON.parse(jsonResponse._webout)
}