Fix terminal in web, and update translations and prep for release.

This commit is contained in:
LukeGus
2025-09-12 12:51:33 -05:00
parent 9672a3c27b
commit 7fe49d82f3
5 changed files with 33 additions and 37 deletions

View File

@@ -825,11 +825,9 @@ app.post("/ssh/file_manager/ssh/uploadFile", async (req, res) => {
streamErr,
);
if (!res.headersSent) {
res
.status(500)
.json({
error: `Chunked upload stream error: ${streamErr.message}`,
});
res.status(500).json({
error: `Chunked upload stream error: ${streamErr.message}`,
});
}
});
});