Ported most routes to fastify.

This commit is contained in:
SamTV12345 2024-03-18 10:43:04 +01:00
parent d7869f5014
commit b3741470ed
16 changed files with 813 additions and 288 deletions

View file

@ -70,7 +70,7 @@ export const expressCreateServer = (hookName:string, args:ArgsExpressType, cb:Fu
// there shouldn't be a browser that isn't compatible to all
// transports in this list at once
// e.g. XHR is disabled in IE by default, so in IE it should use jsonp-polling
io = new Server(args.server,{
io = new Server(args.server.server,{
transports: settings.socketTransportProtocols,
cookie: false,
maxHttpBufferSize: settings.socketIo.maxHttpBufferSize,