i fucking hate old computercraft
This commit is contained in:
parent
7aaeb91add
commit
aed5b034a9
2 changed files with 7 additions and 4 deletions
3
index.js
3
index.js
|
@ -59,6 +59,7 @@ app.get("/indexes/:project(\\w+)", (req, res) => {
|
|||
}
|
||||
});
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
app.use(express.text());
|
||||
|
||||
function diff(current, checked) {
|
||||
let lines_current = current.split('\n').map(l => l.trim()).filter(l => l != "");
|
||||
|
@ -113,7 +114,7 @@ function diff(current, checked) {
|
|||
|
||||
app.post("/updates/:project(\\w+)", (req, res) => {
|
||||
let project_id = req.params['project'];
|
||||
const body = String(Object.keys(req.body)[0]);
|
||||
const body = typeof req.body == "string" ? req.body : (req.body.content || "");
|
||||
// console.log(req.body);
|
||||
// console.log(`${req.body}, ${typeof req.body}`);
|
||||
// console.log(`${body}`);
|
||||
|
|
|
@ -69,9 +69,11 @@ local function getAllFiles(program)
|
|||
|
||||
print("#DEBUG currentFiles " .. currentFiles)
|
||||
|
||||
local updateResult = http.post(updateUrl, currentFiles, {
|
||||
["Content-Type"] = "text/plain",
|
||||
["Content-Length"] = #currentFiles
|
||||
local updateResult = http.post(updateUrl, {
|
||||
content = currentFiles
|
||||
}, {
|
||||
["Content-Type"] = "text/plain",
|
||||
["Content-Length"] = #currentFiles
|
||||
})
|
||||
if updateResult == nil then
|
||||
print("error! getting updates for " .. program)
|
||||
|
|
Loading…
Reference in a new issue