Support debugging when on IPv6 network (Node's "Debugger listening" message is phrased differently there)
This commit is contained in:
parent
f2f67fe880
commit
c892f7da35
|
|
@ -251,7 +251,7 @@ If you haven't yet installed node-inspector, you can do so as follows:
|
|||
|
||||
private static bool IsDebuggerListeningMessage(string message)
|
||||
{
|
||||
return message.StartsWith("Debugger listening on port ", StringComparison.OrdinalIgnoreCase);
|
||||
return message.StartsWith("Debugger listening ", StringComparison.OrdinalIgnoreCase);
|
||||
}
|
||||
|
||||
private FileSystemWatcher BeginFileWatcher(string rootDir)
|
||||
|
|
|
|||
Loading…
Reference in New Issue