diff --git a/src/parser/classes/SearchSubMenu.ts b/src/parser/classes/SearchSubMenu.ts index 6a88035a..b1a3c864 100644 --- a/src/parser/classes/SearchSubMenu.ts +++ b/src/parser/classes/SearchSubMenu.ts @@ -17,7 +17,7 @@ export default class SearchSubMenu extends YTNode { if (Reflect.has(data, 'title')) this.title = new Text(data.title); - if (!Reflect.has(data, 'groups')) + if (Reflect.has(data, 'groups')) this.groups = Parser.parseArray(data.groups, SearchFilterGroup); if (Reflect.has(data, 'button'))