Add space after if
This commit is contained in:
parent
c4280612c1
commit
91bd95a0b2
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ let win = new BrowserWindow()
|
||||||
|
|
||||||
win.webContents.session.setCertificateVerifyProc((request, callback) => {
|
win.webContents.session.setCertificateVerifyProc((request, callback) => {
|
||||||
const {hostname} = request
|
const {hostname} = request
|
||||||
if(hostname === 'github.com') {
|
if (hostname === 'github.com') {
|
||||||
callback(0)
|
callback(0)
|
||||||
} else {
|
} else {
|
||||||
callback(-2)
|
callback(-2)
|
||||||
|
|
Loading…
Reference in a new issue