From 680da9f501db02a9bed2fa8357df021e63024e5f Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Mon, 18 Nov 2024 19:51:00 +0100 Subject: [PATCH] fix(parser): Update list of possible content_type in LockupView (#808) --- src/parser/classes/LockupView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/classes/LockupView.ts b/src/parser/classes/LockupView.ts index 142a748b2..c31465d7a 100644 --- a/src/parser/classes/LockupView.ts +++ b/src/parser/classes/LockupView.ts @@ -10,7 +10,7 @@ export default class LockupView extends YTNode { content_image: CollectionThumbnailView | null; metadata: LockupMetadataView | null; content_id: string; - content_type: 'SOURCE' | 'PLAYLIST' | 'ALBUM' | 'PODCAST' | 'SHOPPING_COLLECTION' | 'SHORT' | 'GAME' | 'PRODUCT'; + content_type: 'VIDEO' | 'MOVIE' | 'CHANNEL' | 'CLIP' | 'SOURCE' | 'PLAYLIST' | 'ALBUM' | 'PODCAST' | 'SHOPPING_COLLECTION' | 'SHORT' | 'GAME' | 'PRODUCT'; on_tap_endpoint: NavigationEndpoint; constructor(data: RawNode) {