diff --git a/services/graphql-server/src/graphql/resolvers/platform/content.js b/services/graphql-server/src/graphql/resolvers/platform/content.js index 5f41540c7..5ceda2035 100644 --- a/services/graphql-server/src/graphql/resolvers/platform/content.js +++ b/services/graphql-server/src/graphql/resolvers/platform/content.js @@ -602,7 +602,7 @@ module.exports = { const { playlistId, channelId, username } = asObject(youtube); switch (true) { case Boolean(playlistId): - return `https://youtube.com/playlist/${playlistId}`; + return `https://youtube.com/playlist?list=${playlistId}`; case Boolean(channelId): return `https://youtube.com/channel/${channelId}`; case Boolean(username):