mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-23 17:08:44 -06:00
Fix cors settings for websocket when it's set for any origin
This commit is contained in:
parent
e385932bbc
commit
707ac9db2c
@ -13,7 +13,7 @@ export const initIO = (httpServer: Server) => {
|
|||||||
if (configService.get<Websocket>('WEBSOCKET')?.ENABLED) {
|
if (configService.get<Websocket>('WEBSOCKET')?.ENABLED) {
|
||||||
io = new SocketIO(httpServer, {
|
io = new SocketIO(httpServer, {
|
||||||
cors: {
|
cors: {
|
||||||
origin: cors,
|
origin: cors.includes('*') ? '*' : cors,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user