Fixed configfile download when using context path

This commit is contained in:
Gunnar Skjold
2024-11-03 11:21:35 +01:00
parent afdd282adf
commit 718eef7999
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -99,7 +99,7 @@
const formData = new FormData();
formData.append('file', configFiles[0]);
const upload = fetch('/configfile', {
const upload = fetch('configfile', {
method: 'POST',
body: formData
}).then((response) => response.json()).then((res) => {