refactor(Parser): reduce reliance on localised strings (#258)

This commit is contained in:
LuanRT
2022-12-17 00:54:08 -03:00
committed by GitHub
parent b036e2fcdc
commit 9978ebf085
17 changed files with 117 additions and 85 deletions

View File

@@ -16,7 +16,7 @@ class SectionList extends YTNode {
}
// TODO: this should be Parser#parseArray
this.contents = Parser.parse(data.contents);
this.contents = Parser.parseArray(data.contents);
if (data.continuations) {
if (data.continuations[0].nextContinuationData) {