We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4695f commit 5032e63Copy full SHA for 5032e63
app/src/processing/app/macosx/Platform.java
@@ -232,7 +232,7 @@ public String preListAllCandidateDevices() {
232
CommandLine toDevicePath = CommandLine.parse("/usr/sbin/system_profiler SPUSBDataType");
233
executor.execute(toDevicePath);
234
return new String(baos.toByteArray());
235
- } catch (IOException e) {
+ } catch (Throwable e) {
236
return super.preListAllCandidateDevices();
237
}
238
app/src/processing/app/windows/Platform.java
@@ -345,7 +345,7 @@ public String preListAllCandidateDevices() {
345
CommandLine toDevicePath = CommandLine.parse(listComPorts);
346
347
348
349
350
351
0 commit comments