fix: make Express listen on localhost only (#656)

master
Ethan Wong 4 years ago committed by GitHub
parent c8adba7f13
commit cc6b364b87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -100,7 +100,7 @@ class Background {
}); });
}); });
}); });
this.expressApp = expressApp.listen(27232); this.expressApp = expressApp.listen(27232, '127.0.0.1');
} }
createWindow() { createWindow() {

Loading…
Cancel
Save