fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
2c42fa5ace
commit
676fe1fc6c
1 changed files with 3 additions and 3 deletions
|
@ -940,10 +940,10 @@ export class GBVMService extends GBService {
|
|||
const tokens = await min.core['findParam'](min.instance, strFind);
|
||||
let tokensList = [];
|
||||
await CollectionUtil.asyncForEach(tokens, async t => {
|
||||
const tokenName = t.replace(strFind, '');
|
||||
tokensList.push(tokenName);
|
||||
const token = t.replace(strFind, '');
|
||||
tokensList.push(token);
|
||||
try {
|
||||
variables[tokenName] = await sys.getCustomToken({pid, tokenName});
|
||||
variables[token] = await sys.getCustomToken({pid, token});
|
||||
} catch (error) {
|
||||
variables[t] = 'ERROR: Configure /setupSecurity before using token variables.';
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue