diff --git a/extensions/remote-control/server/server.ts b/extensions/remote-control/server/server.ts index e218bfa..115b6d3 100644 --- a/extensions/remote-control/server/server.ts +++ b/extensions/remote-control/server/server.ts @@ -51,7 +51,7 @@ import { handleInput } from "./routes/input.js"; import { handleSessions } from "./routes/sessions.js"; import type { RemoteServer, WsClient, WsServer } from "./types.js"; import { createUpgradeHandler } from "./upgrade.js"; -import { extractBearer } from "./util.js"; +import { extractBearer, readBody, sendJson } from "./util.js"; // --------------------------------------------------------------------------- // Load ws (bundled with pi) without needing @types/ws installed locally @@ -257,7 +257,7 @@ export async function startServer( host, port, pairingToken: pairingEntry.token, - fingerprint: "", + fingerprint: "NO-TLS-YET-REPLACE-IN-T-1-3", sidecarName: "pi-remote", }); res.writeHead(200, { "Content-Type": "text/plain; charset=utf-8" });