correctly support httpSafeOrigin loaded from configuration file

This commit is contained in:
ansuz 2018-10-17 13:48:31 +02:00
parent 947c9c5e40
commit 26540b4b94
1 changed files with 1 additions and 1 deletions

View File

@ -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 + "'); }())";