diff --git a/lib/v2/youtube/user.js b/lib/v2/youtube/user.js index 3ef438ef4..e84a86359 100644 --- a/lib/v2/youtube/user.js +++ b/lib/v2/youtube/user.js @@ -17,7 +17,7 @@ module.exports = async (ctx) => { const link = `https://www.youtube.com/${username}`; const response = await got(link); const $ = cheerio.load(response.data); - const channelId = $('meta[itemprop="channelId"]').attr('content'); + const channelId = $('meta[itemprop="identifier"]').attr('content'); channelName = $('meta[itemprop="name"]').attr('content'); playlistId = (await utils.getChannelWithId(channelId, 'contentDetails', ctx.cache)).data.items[0].contentDetails.relatedPlaylists.uploads; }