Skip to content

Commit 9f95fff

Browse files
committed
fixup!: fix regex for manifest route
1 parent aaa4324 commit 9f95fff

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)