Fix 'enable' tag attribute (#53)

This commit is contained in:
Jakub Bacic
2021-03-30 13:11:51 +02:00
committed by GitHub
parent 72654174f7
commit b909bd34ef
3 changed files with 79 additions and 1 deletions

View File

@ -44,6 +44,10 @@ export class Meta {
};
for (const tag of this.tags) {
if (tag.attrs['enable'] == 'false') {
continue;
}
switch (tag.type) {
case tcl.Type.Schedule: {
version = this.procSchedule(version, tag);