From ab535ce43e4fc5339ddb2547c9b3995e23fefd9f Mon Sep 17 00:00:00 2001 From: Josh Worden Date: Tue, 23 Feb 2021 14:19:19 -0600 Subject: [PATCH] Update youtube playlist url format --- .../graphql-server/src/graphql/resolvers/platform/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):