mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 13:48:02 +00:00
fix: make Express listen on localhost only (#656)
This commit is contained in:
parent
c8adba7f13
commit
cc6b364b87
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ class Background {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
this.expressApp = expressApp.listen(27232);
|
this.expressApp = expressApp.listen(27232, '127.0.0.1');
|
||||||
}
|
}
|
||||||
|
|
||||||
createWindow() {
|
createWindow() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue