fix os.version shim, improve docker image

This commit is contained in:
Nystik
2026-03-12 22:32:39 +01:00
parent 2aa16341a1
commit 12af8ae010
10 changed files with 79 additions and 41 deletions

View File

@@ -2,7 +2,7 @@ const express = require("express");
const router = express.Router();
// POST /api/proxy - forward a request to an external URL (bypasses browser CORS)
// POST /api/proxy - forward a request to an external URL (bypasses browser CORS)
// Used by the requestUrl shim for plugin installation, update checks, etc.
router.post("/", async (req, res) => {
const { url, method, headers, body, binary } = req.body;