Skip to content

Commit efb5bae

Browse files
refactor: simplify manifest route (#5219)
Co-authored-by: Joe Previte <jjprevite@gmail.com>
1 parent 45e222b commit efb5bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/routes/vscode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class CodeServerRouteWrapper {
170170

171171
constructor() {
172172
this.router.get("/", this.ensureCodeServerLoaded, this.$root)
173-
this.router.get(/manifest.json$/, this.manifest)
173+
this.router.get("/manifest.json", this.manifest)
174174
this.router.all("*", ensureAuthenticated, this.ensureCodeServerLoaded, this.$proxyRequest)
175175
this._wsRouterWrapper.ws("*", ensureAuthenticated, this.ensureCodeServerLoaded, this.$proxyWebsocket)
176176
}

0 commit comments

Comments
 (0)