Add -i- before youtube ids

This commit is contained in:
Sam Carlton 2020-12-05 18:50:09 -06:00
parent f02460759f
commit e8f44a6d3f

View file

@ -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
})