Add space after if

This commit is contained in:
Kevin Sawicki 2017-02-22 08:11:21 -08:00 committed by GitHub
parent c4280612c1
commit 91bd95a0b2

View file

@ -276,7 +276,7 @@ let win = new BrowserWindow()
win.webContents.session.setCertificateVerifyProc((request, callback) => {
const {hostname} = request
if(hostname === 'github.com') {
if (hostname === 'github.com') {
callback(0)
} else {
callback(-2)