add extra newline to PUT command

This commit is contained in:
zefie
2021-08-10 20:11:25 -04:00
parent ca72399c08
commit fb83c5917b

View File

@@ -133,7 +133,7 @@ class WTVDownloadList {
putUserStore(path) { putUserStore(path) {
var destination = path.replace("file://", ""); var destination = path.replace("file://", "");
this.download_list += "PUT " + path + "\n"; this.download_list += "PUT " + path + "\n";
this.download_list += "location: " + this.service_name + ":/userstore?partialPath=" + escape(destination) + "\n"; this.download_list += "location: " + this.service_name + ":/userstore?partialPath=" + escape(destination) + "\n\n";
} }
/** /**
* Adds a GET command to the download list * Adds a GET command to the download list