From 9d404ac935a25abc59473d3f7ce83f5ab1d78a3e Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Mon, 11 Mar 2024 00:04:30 +0100 Subject: [PATCH] removed filter for devices --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index a51e82f..1911c46 100644 --- a/index.js +++ b/index.js @@ -380,7 +380,6 @@ app.get('/', (req, res) => { SerialPort.list() .then((deviceList) => { serialPorts = deviceList - .filter(port => !port.path.startsWith('/dev/ttyS')) .map(port => ({ path: port.path, friendlyName: port.friendlyName,