From 8978fb71e482e0ab08cc3eebdb96df0abc032e4f Mon Sep 17 00:00:00 2001 From: hak8or Date: Sat, 24 Feb 2018 02:41:45 -0500 Subject: [PATCH] Fixed href link used for videos --- YTManager/wwwroot/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YTManager/wwwroot/index.js b/YTManager/wwwroot/index.js index ae4a0f1..2163611 100644 --- a/YTManager/wwwroot/index.js +++ b/YTManager/wwwroot/index.js @@ -43,7 +43,7 @@ var vidholder = new Vue({ } // Generate a new URL by adding the YT ID. - x.url = "https://www.youtube.com/watch?v=" + x.youtubeID; + x.url = "https://www.youtube.com/watch?v=" + x.id; // Add it to our array this.Videos.push(x);