Skip to content

Commit

Permalink
fix(StreamsExtractor): use highest quality channel avater
Browse files Browse the repository at this point in the history
  • Loading branch information
FineFindus committed Oct 11, 2024
1 parent ab9a168 commit 91632ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ object StreamsExtractor {
thumbnail = it.thumbnails.lastOrNull()?.url,
uploaderName = it.uploaderName,
uploaderUrl = it.uploaderUrl,
uploaderAvatar = channelInfo.avatars.firstOrNull()?.url,
uploaderAvatar = channelInfo.avatars.lastOrNull()?.url,
uploadedDate = it.uploadDate?.offsetDateTime().toString(),
duration = it.duration,
views = it.viewCount,
Expand Down

0 comments on commit 91632ad

Please sign in to comment.