fix(basic.gbapp): AS IMAGE testing.

This commit is contained in:
Rodrigo Rodriguez 2023-08-13 18:43:01 -03:00
parent 3fb4d814dd
commit 28c3ef83a3

View file

@ -567,8 +567,8 @@ export class DialogKeywords {
}
}
public static async getOption({ pid, name }) {
if (this.isUserSystemParam(name)) {
public static async getOption({ pid, name, root=false }) {
if (this.isUserSystemParam(name) || root) {
throw new Error(`Not possible to retrieve ${name} system param.`);
}
let { min, user, params } = await DialogKeywords.getProcessInfo(pid);