From 9a1b0015383fdd7339f004b9e9f342660bdc4662 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Thu, 28 Nov 2019 03:06:00 -0800 Subject: [PATCH] Fixed mvimg Signed-off-by: James Ketrenos --- frontend/mvimg.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mvimg.html b/frontend/mvimg.html index 25d84c3..cc3771b 100644 --- a/frontend/mvimg.html +++ b/frontend/mvimg.html @@ -160,7 +160,7 @@ document.addEventListener("DOMContentLoaded", function() { .then(res => res.json()) .then((data) => { data.items.forEach((movie) => { - document.body.appendChild(createMvElement(movie.filename)); + document.body.appendChild(createMvElement(movie.path + movie.filename)); }); }).catch((error) => { console.error(error);