From ac536d2fe8ae116f08fd8f5ca5815dca93d1598a Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 1 Feb 2019 17:27:51 -0500 Subject: [PATCH] add prompt to get socket error before the GUI bails --- pd/nw/pdgui.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 260ace1ea..2e961d984 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -1764,6 +1764,14 @@ function connect_as_client() { client.setNoDelay(true); // uncomment the next line to use fast_parser (then set its callback below) //client.setEncoding("utf8"); + client.on("error", function(e) { + var eString = ""; + Object.keys(e).forEach(function(k) { + eString += " " + k + ": " + e[k]; + }); + pd_window.prompt("Error:" + eString); + }); + client.connect(PORT, HOST, function() { console.log("CONNECTED TO: " + HOST + ":" + PORT); }); -- GitLab