Skip to content

Commit

Permalink
chore: catch up
Browse files Browse the repository at this point in the history
  • Loading branch information
LuanRT committed Nov 27, 2024
2 parents af3a916 + bbaefb1 commit 386257c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/parser/classes/PageHeaderView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default class PageHeaderView extends YTNode {

title: DynamicTextView | null;
image: ContentPreviewImageView | DecoratedAvatarView | null;
animated_image: ContentPreviewImageView | null;
metadata: ContentMetadataView | null;
actions: FlexibleActionsView | null;
description: DescriptionPreviewView | null;
Expand All @@ -24,6 +25,7 @@ export default class PageHeaderView extends YTNode {
super();
this.title = Parser.parseItem(data.title, DynamicTextView);
this.image = Parser.parseItem(data.image, [ ContentPreviewImageView, DecoratedAvatarView ]);
this.animated_image = Parser.parseItem(data.animatedImage, ContentPreviewImageView);
this.metadata = Parser.parseItem(data.metadata, ContentMetadataView);
this.actions = Parser.parseItem(data.actions, FlexibleActionsView);
this.description = Parser.parseItem(data.description, DescriptionPreviewView);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const CLIENTS = Object.freeze({
WEB: {
NAME_ID: '1',
NAME: 'WEB',
VERSION: '2.20240111.09.00',
VERSION: '2.20241121.01.00',
API_KEY: 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8',
API_VERSION: 'v1',
STATIC_VISITOR_ID: '6zpwvWUNAco'
Expand Down

0 comments on commit 386257c

Please sign in to comment.