fix(basic.gblib): SET SCHEDULE bug. @othonlima
This commit is contained in:
parent
b02e2bd7c5
commit
36e950ca52
1 changed files with 1 additions and 1 deletions
|
@ -687,7 +687,7 @@ export class GBVMService extends GBService {
|
|||
if (!code) return null;
|
||||
const keyword = /^\s*SET SCHEDULE (.*)/gim;
|
||||
const result = keyword.exec(code);
|
||||
return result ? result[1] : null;
|
||||
return result ? result[1].replace(/\`/, '') : null;
|
||||
}
|
||||
|
||||
private async getTextFromWord(folder: string, filename: string) {
|
||||
|
|
Loading…
Add table
Reference in a new issue