From e8f44a6d3f85715251d94c1ded4f0e141cd21017 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 5 Dec 2020 18:50:09 -0600 Subject: [PATCH] Add -i- before youtube ids --- helpers/build-video-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/build-video-list.js b/helpers/build-video-list.js index 4857a04..60d1ce7 100644 --- a/helpers/build-video-list.js +++ b/helpers/build-video-list.js @@ -117,7 +117,7 @@ export default async function ( applist ) { for (const videoId in fetchedVideos) { // Build video slug - const slug = slugify(`${fetchedVideos[videoId].title}-${videoId}`, { + const slug = slugify(`${fetchedVideos[videoId].title}-i-${videoId}`, { lower: true, strict: true })