Rejiggled error display.

This commit is contained in:
2024-04-17 20:56:33 -04:00
parent 848ef21c7c
commit 5448e773d8
4 changed files with 75 additions and 42 deletions

View File

@ -141,12 +141,21 @@ function socket(request, response, client) {
}
}
response.send(
JSON.stringify(Object.assign({
action: 'session',
credentials: credentials,
parentApp: parentApp,
id: blobId,
}, await core.getIdentityInfo(credentials?.session?.name, packageOwner, packageName))),
JSON.stringify(
Object.assign(
{
action: 'session',
credentials: credentials,
parentApp: parentApp,
id: blobId,
},
await core.getIdentityInfo(
credentials?.session?.name,
packageOwner,
packageName
)
)
),
0x1
);