chore: v8.1.0 release

This commit is contained in:
LuanRT
2023-12-27 02:25:21 +00:00
parent 1b159e5162
commit bd9ae29de3
32 changed files with 706 additions and 116 deletions

View File

@@ -15,6 +15,6 @@ export default class ChannelExternalLinkView extends YTNode {
this.title = Text.fromAttributed(data.title);
this.link = Text.fromAttributed(data.link);
this.favicon = data.favicon.sources.map((x: any) => new Thumbnail(x)).sort((a: Thumbnail, b: Thumbnail) => b.width - a.width);
this.favicon = Thumbnail.fromResponse(data.favicon);
}
}