But it will be always true.. because false || true returns always true
It seems that strictSSL is always stored in the config file, then it should be just
strictSSL: gcr.config.get('strictSSL')
Or if this config is optional (not available in the config file), then you should test if it's undefined..
You have:
But it will be always true.. because
false || true
returns always true It seems that strictSSL is always stored in the config file, then it should be justOr if this config is optional (not available in the config file), then you should test if it's undefined..
Regards