mirror of https://github.com/xwiki-labs/cryptpad
correctly support httpSafeOrigin loaded from configuration file
This commit is contained in:
parent
947c9c5e40
commit
26540b4b94
|
@ -176,7 +176,7 @@ app.get('/api/config', function(req, res){
|
|||
httpUnsafeOrigin: config.httpUnsafeOrigin,
|
||||
}, null, '\t'),
|
||||
'obj.httpSafeOrigin = ' + (function () {
|
||||
if (config.httpSafeOrigin) { return config.httpSafeOrigin; }
|
||||
if (config.httpSafeOrigin) { return '"' + config.httpSafeOrigin + '"'; }
|
||||
if (config.httpSafePort) {
|
||||
return "(function () { return window.location.origin.replace(/\:[0-9]+$/, ':" +
|
||||
config.httpSafePort + "'); }())";
|
||||
|
|
Loading…
Reference in New Issue