From 40ecc6cf11a0fbfaa5a7fb65cf93ecf3edf8dc8e Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 5 Nov 2022 15:12:14 +0100 Subject: Fix startup from youtube-dl leftover --- html/whiteboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html/whiteboard.js') diff --git a/html/whiteboard.js b/html/whiteboard.js index f79443e..dd81ff0 100644 --- a/html/whiteboard.js +++ b/html/whiteboard.js @@ -54,7 +54,7 @@ function on_start() { formatElement.appendChild(document.createTextNode(document.getElementById("mp3").checked ? "mp3" : "mp4")); requestElement.appendChild(formatElement); - xhr.open("POST", "downtube.fcgi", true); + xhr.open("POST", "whiteboard.fcgi", true); xhr.setRequestHeader("Content-type", "text/xml"); xhr.responseType = 'text'; xhr.send(xmlDocument); @@ -106,7 +106,7 @@ function get_file(filename) { formatElement.appendChild(document.createTextNode(document.getElementById("mp3").checked ? "mp3" : "mp4")); requestElement.appendChild(formatElement); - xhr.open("POST", "downtube.fcgi", true); + xhr.open("POST", "whiteboard.fcgi", true); xhr.setRequestHeader("Content-type", "text/xml"); xhr.responseType = 'blob'; xhr.send(xmlDocument); -- cgit v1.2.3