Skip to content

Commit a7fdf15

Browse files
committed
Fixing CI
1 parent 844bb15 commit a7fdf15

3 files changed

Lines changed: 19 additions & 15 deletions

File tree

build/main.js

Lines changed: 17 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2142,7 +2142,7 @@ export class WebAdapter extends Adapter {
21422142
});
21432143
}
21442144

2145-
this.webServer.app.get('*/_socket/info.js', (req: Request, res: Response): void => {
2145+
this.webServer.app.get(/.*\/_socket\/info\.js/, (req: Request, res: Response): void => {
21462146
res.set('Content-Type', 'application/javascript');
21472147
res.set('Cache-Control', 'no-cache');
21482148
res.status(200).send(this.getInfoJs());

0 commit comments

Comments
 (0)