mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
router fix
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
parent
0c7c765469
commit
9f02c7826b
@ -156,7 +156,7 @@ export class LensProxy {
|
|||||||
if (proxyTarget) {
|
if (proxyTarget) {
|
||||||
proxy.web(req, res, proxyTarget)
|
proxy.web(req, res, proxyTarget)
|
||||||
} else {
|
} else {
|
||||||
await this.router.route(cluster, req, res)
|
this.router.route(cluster, req, res)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@ -96,8 +96,8 @@ export class Router {
|
|||||||
const type = mimeTypes[path.extname(asset).slice(1)] || "text/plain";
|
const type = mimeTypes[path.extname(asset).slice(1)] || "text/plain";
|
||||||
response.setHeader("Content-Type", type);
|
response.setHeader("Content-Type", type);
|
||||||
response.write(data)
|
response.write(data)
|
||||||
response.end()
|
|
||||||
}
|
}
|
||||||
|
response.end()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user