From 677e1f08075a4a59274f89f3eb65967d7d0ab01b Mon Sep 17 00:00:00 2001 From: asomethings <16171942+asomethings@users.noreply.github.com> Date: Tue, 29 Oct 2024 20:04:07 +0900 Subject: [PATCH] feat(account): Add missing property `channel_handle` (#789) --- src/parser/classes/AccountItem.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/parser/classes/AccountItem.ts b/src/parser/classes/AccountItem.ts index 494cec20a..b1dc0f031 100644 --- a/src/parser/classes/AccountItem.ts +++ b/src/parser/classes/AccountItem.ts @@ -17,6 +17,7 @@ export default class AccountItem extends YTNode { has_channel: boolean; endpoint: NavigationEndpoint; account_byline: Text; + channel_handle: Text; constructor(data: RawNode) { super(); @@ -27,5 +28,6 @@ export default class AccountItem extends YTNode { this.has_channel = !!data.hasChannel; this.endpoint = new NavigationEndpoint(data.serviceEndpoint); this.account_byline = new Text(data.accountByline); + this.channel_handle = new Text(data.channelHandle); } } \ No newline at end of file