fix skynet links

This commit is contained in:
2020-02-11 21:52:14 +01:00
parent 9912497c2d
commit 0fea58d27d
3 changed files with 6 additions and 5 deletions

View File

@@ -99,7 +99,7 @@ UploadManager.prototype.uploadThread = function() {
console.debug("Starting upload of " + job.name);
let form = new FormData();
form.append('file', job.file);
form.append('file', job.file, job.name);
let xhr = new XMLHttpRequest();
xhr.open("POST", this.uploadEndpoint, true);