From fee1534a9d606e0fe4f16ce26aba0519b268d76e Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Thu, 14 Sep 2023 17:39:37 +0700 Subject: [PATCH] correct link to a video --- templates/showMovie.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/showMovie.html b/templates/showMovie.html index 1bdd6dcb..9e150b33 100644 --- a/templates/showMovie.html +++ b/templates/showMovie.html @@ -23,6 +23,6 @@ const video_param = parseInt(url.searchParams.get("epi")) ? parseInt(url.searchParams.get("epi")) : 0 - videoEl.setAttribute('src',`http:/localhost:8000/media/${movie_data[video_param].file}`) + videoEl.setAttribute('src',`http://localhost:8000/media/${movie_data[video_param].file}`) {% endblock content %}