Skip to content

Commit

Permalink
Item section target_id fix (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBicha authored Apr 29, 2024
1 parent 1b00e2c commit 8106654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/classes/ItemSection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 8106654

Please sign in to comment.