mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-26 02:40:24 -06:00
enforce loading urls to https only
This commit is contained in:
parent
923bd3ba1a
commit
2f38ea0049
@ -306,7 +306,7 @@ function createWin(urlFromConfig) {
|
||||
// add https protocol if none found.
|
||||
let parsedUrl = nodeURL.parse(urlFromConfig);
|
||||
|
||||
if (!parsedUrl.protocol) {
|
||||
if (!parsedUrl.protocol || parsedUrl.protocol !== 'https') {
|
||||
parsedUrl.protocol = 'https:';
|
||||
parsedUrl.slashes = true
|
||||
}
|
||||
|
@ -76,11 +76,17 @@ function removeWindowKey(key) {
|
||||
|
||||
/**
|
||||
* Gets the parsed url
|
||||
* @param url
|
||||
* @returns {Url}
|
||||
* @returns {String}
|
||||
* @param appUrl
|
||||
*/
|
||||
function getParsedUrl(url) {
|
||||
return nodeURL.parse(url);
|
||||
function getParsedUrl(appUrl) {
|
||||
let parsedUrl = nodeURL.parse(appUrl);
|
||||
if (!parsedUrl.protocol || parsedUrl.protocol !== 'https') {
|
||||
parsedUrl.protocol = 'https:';
|
||||
parsedUrl.slashes = true
|
||||
}
|
||||
let url = nodeURL.format(parsedUrl);
|
||||
return url;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user