1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Update packages/node_modules/node-red/red.js

Co-authored-by: Nick O'Leary <nick.oleary@gmail.com>
This commit is contained in:
bartbutenaers 2020-05-13 23:23:29 +02:00 committed by GitHub
parent bfa5f39b6d
commit 90f62e5e4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,15 +150,8 @@ if (settings.https) {
// Get the result of the function, because createServer doesn't accept functions as input
startupHttps = startupHttps();
}
if (startupHttps.hasOwnProperty('then') && typeof startupHttps.then === 'function') {
// A promise was returned
httpsPromise = startupHttps;
} else {
// An object was returned - wrap in a promise
httpsPromise = Promise.resolve(startupHttps);
}
}
else {
// No https is enable - wrap null
httpsPromise = Promise.resolve(null);