Fix websocket issue with some dev instances

This commit is contained in:
yflory 2023-09-04 12:10:48 +02:00
parent 584b410d34
commit 920c307608
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ module.exports.create = function (config) {
removeDonateButton: config.removeDonateButton,
httpPort: isValidPort(config.httpPort)? config.httpPort: 3000,
httpAddress: typeof(config.httpAddress) === 'string'? config.httpAddress: '127.0.0.1',
httpAddress: typeof(config.httpAddress) === 'string'? config.httpAddress: 'localhost',
websocketPath: config.externalWebsocketURL,
OFFLINE_MODE: false,