fix(core.gbapp): FIX SSR errors and setOption impersonated.
This commit is contained in:
parent
14b4aa0052
commit
ed9644089e
1 changed files with 4 additions and 1 deletions
|
@ -708,7 +708,10 @@ export class DialogKeywords {
|
|||
*/
|
||||
public async userMobile({ pid }) {
|
||||
let { min, user, params } = await DialogKeywords.getProcessInfo(pid);
|
||||
return user.userSystemId;
|
||||
if (user)
|
||||
return user.userSystemId;
|
||||
else
|
||||
return 'unattended';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue