fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit a65287338a - Show all commits

View file

@ -697,7 +697,10 @@ export class DialogKeywords {
*/
public async userName({ pid }) {
let { min, user, params } = await DialogKeywords.getProcessInfo(pid);
return user.userName;
if (user)
return user.userName;
else
return 'unattended';
}
/**