diff --git a/lib/v2/youtube/channel.js b/lib/v2/youtube/channel.js index aa712de45..b84d1e46f 100644 --- a/lib/v2/youtube/channel.js +++ b/lib/v2/youtube/channel.js @@ -33,6 +33,7 @@ module.exports = async (ctx) => { description: utils.renderDescription(embed, videoId, img, utils.formatDescription(snippet.description)), pubDate: parseDate(snippet.publishedAt), link: `https://www.youtube.com/watch?v=${videoId}`, + author: snippet.videoOwnerChannelTitle, }; }), }; diff --git a/lib/v2/youtube/user.js b/lib/v2/youtube/user.js index 4f450981f..d722dbd08 100644 --- a/lib/v2/youtube/user.js +++ b/lib/v2/youtube/user.js @@ -28,6 +28,7 @@ module.exports = async (ctx) => { description: utils.renderDescription(embed, videoId, img, utils.formatDescription(snippet.description)), pubDate: parseDate(snippet.publishedAt), link: `https://www.youtube.com/watch?v=${videoId}`, + author: snippet.videoOwnerChannelTitle, }; }), };