From 810665407e91b2890a8e555fd759d67ccd800379 Mon Sep 17 00:00:00 2001 From: Brahim Hadriche Date: Mon, 29 Apr 2024 13:22:28 -0400 Subject: [PATCH] Item section target_id fix (#655) --- src/parser/classes/ItemSection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/classes/ItemSection.ts b/src/parser/classes/ItemSection.ts index 9ac7249c..f41de3f1 100644 --- a/src/parser/classes/ItemSection.ts +++ b/src/parser/classes/ItemSection.ts @@ -19,7 +19,7 @@ export default class ItemSection extends YTNode { this.contents = Parser.parseArray(data.contents); if (data.targetId || data.sectionIdentifier) { - this.target_id = data.target_id || data.sectionIdentifier; + this.target_id = data.targetId || data.sectionIdentifier; } if (data.continuations) {