summaryrefslogtreecommitdiffhomepage
path: root/html/whiteboard.js
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2022-11-05 15:12:14 +0100
committerRoland Reichwein <mail@reichwein.it>2022-11-05 15:12:14 +0100
commit40ecc6cf11a0fbfaa5a7fb65cf93ecf3edf8dc8e (patch)
tree895551a143960373776624a6a94dbeddf111682f /html/whiteboard.js
parent54539cc210afcda25f6da12ad08c2b5fa8bd5be2 (diff)
Fix startup from youtube-dl leftover
Diffstat (limited to 'html/whiteboard.js')
-rw-r--r--html/whiteboard.js4
1 files changed, 2 insertions, 2 deletions
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);