From 52e4effc8b76322f63bebac8ad36fbb4f0df3bb9 Mon Sep 17 00:00:00 2001 From: asomethings <16171942+asomethings@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:06:47 +0900 Subject: [PATCH] feat(account): add missing property `channel_handle` --- 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