From 8d954f76f06374646b6665d938d51ad2d61de5ff Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 5 Dec 2020 22:07:32 -0600 Subject: [PATCH] Add name and id to video list --- helpers/build-video-list.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helpers/build-video-list.js b/helpers/build-video-list.js index 392541f..4341851 100644 --- a/helpers/build-video-list.js +++ b/helpers/build-video-list.js @@ -43,6 +43,8 @@ export default async function ( applist ) { } videos.push({ + name: fetchedVideos[videoId].title, + id: videoId, apps, slug, timestamps: fetchedVideos[videoId].timestamps, @@ -50,5 +52,7 @@ export default async function ( applist ) { }) } + // console.log('videos', videos) + return videos }