From 921c1980adb408a45d57d54ef71cb5d708f6933e Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Fri, 31 May 2024 12:48:20 -0600 Subject: [PATCH] cache-bust --- app/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/index.html b/app/templates/index.html index bd1bbbe..6ebd3c3 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -175,7 +175,7 @@ } // Append '.mp4' to the formatted path - let videoPath = `${formattedPath}latest.mp4`; + let videoPath = `${formattedPath}latest.mp4&t={Date.now()}`; let videoPlayer = document.getElementById('video-player'); let videoSource = document.getElementById('video-source');