Skip to content

Commit

Permalink
fix(core.gbapp): FIX SSR errors and setOption impersonated.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jul 26, 2023
1 parent 14b4aa0 commit ed96440
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/basic.gblib/services/DialogKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

/**
Expand Down

0 comments on commit ed96440

Please sign in to comment.