fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2023-12-10 20:33:53 -03:00
parent 555babcb23
commit e5a42a8566

View file

@ -591,8 +591,8 @@ export class GBVMService extends GBService {
// Setups refresh token mechanism.
console.log(1);
console.log(this.variables['tokens']);
const tokens = this.variables['tokens'].split(',');
console.log(this.tokens);
const tokens = this.tokens??.split(',');
const interval = 60000; // 1 hour.
for(i in tokens) {