mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
fix debugger not working with misconfigured localhost
This commit is contained in:
parent
afc6b21688
commit
c3714fb7a8
2
node_modules/vfs-local/localfs.js
generated
vendored
2
node_modules/vfs-local/localfs.js
generated
vendored
@ -1402,7 +1402,7 @@ module.exports = function setup(fsOptions) {
|
||||
tryConnect();
|
||||
function tryConnect() {
|
||||
var called = false;
|
||||
var socket = net.connect(port, process.env.OPENSHIFT_DIY_IP || "localhost", function() {
|
||||
var socket = net.connect(port, "127.0.0.1", function() {
|
||||
if (called) return;
|
||||
called = true;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user