mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
Support debugging when on IPv6 network (Node's "Debugger listening" message is phrased differently there)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user