Fix logging line length.

This commit is contained in:
Richard Lewis 2017-08-02 17:05:46 +01:00
parent 48faf72fdc
commit 7599bde1f6

View file

@ -76,7 +76,8 @@ export default React.createClass({
const u = url.parse(this.props.url);
const childContentProtocol = u.protocol;
if (parentContentProtocol === 'https:' && childContentProtocol !== 'https:') {
console.warn("Refusing to load mixed-content app:", parentContentProtocol, childContentProtocol, window.location, this.props.url);
console.warn("Refusing to load mixed-content app:",
parentContentProtocol, childContentProtocol, window.location, this.props.url);
return true;
}
return false;