Skip to content

Commit

Permalink
fix: remove logging_directives
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick committed Oct 28, 2023
1 parent 38fb936 commit 283dd2b
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/parser/classes/VideoAttributeView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ export default class VideoAttributeView extends YTNode {
innertube_command: NavigationEndpoint
};
overflow_menu_a11y_label: string;
logging_directives: {
tracking_params: string,
visibility: {
types: string
},
enable_displaylogger_experiment: boolean
};

constructor(data: RawNode) {
super();
Expand All @@ -45,12 +38,5 @@ export default class VideoAttributeView extends YTNode {
innertube_command: new NavigationEndpoint(data.overflowMenuOnTap.innertubeCommand)
};
this.overflow_menu_a11y_label = data.overflowMenuA11yLabel;
this.logging_directives = {
tracking_params: data.loggingDirectives.trackingParams,
visibility: {
types: data.loggingDirectives.visibility.types
},
enable_displaylogger_experiment: data.loggingDirectives.enableDisplayloggerExperiment
};
}
}

0 comments on commit 283dd2b

Please sign in to comment.