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

Merge pull request #153 from sasjs/context-issue

fix(context): fixed log parsing
This commit is contained in:
Yury Shkoda
2020-11-19 16:53:48 +03:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -14,4 +14,5 @@ What code changes have been made to achieve the intent.
- [ ] Code is formatted correctly (`npm run lint:fix`).
- [ ] All unit tests are passing (`npm test`).
- [ ] All `sasjs-tests` unit tests are passing (`npm test`).
- [ ] All `sasjs-tests` are passing (instructions available [here](https://github.com/sasjs/adapter/blob/master/sasjs-tests/README.md)).

View File

@@ -164,9 +164,9 @@ export class SASViyaApiClient {
for (const promise of promises) results.push(await promise())
results.forEach((result: any, index: number) => {
if (result && result.body && result.body.details) {
if (result && result.error && result.error.details) {
try {
const resultParsed = JSON.parse(result.body.details)
const resultParsed = result.error.details
if (resultParsed && resultParsed.body) {
let sysUserId = ''