mirror of https://github.com/xwiki-labs/cryptpad
trim leading spaces from domains
This commit is contained in:
parent
091ffc6070
commit
663a1138b4
|
@ -214,7 +214,7 @@ app.get('/api/config', function(req, res){
|
|||
// FIXME don't send websocketURL if websocketPath is provided. deprecated.
|
||||
websocketURL:'ws' + ((useSecureWebsockets) ? 's' : '') + '://' + host + ':' +
|
||||
websocketPort + '/cryptpad_websocket',
|
||||
httpUnsafeOrigin: config.httpUnsafeOrigin.replace(/^ /, ''),
|
||||
httpUnsafeOrigin: config.httpUnsafeOrigin.replace(/^\s*/, ''),
|
||||
adminEmail: config.adminEmail,
|
||||
adminKeys: admins,
|
||||
inactiveTime: config.inactiveTime,
|
||||
|
|
Loading…
Reference in New Issue