removed filter for devices

This commit is contained in:
NoobishSVK
2024-03-11 00:04:30 +01:00
parent e2ae9a2fd1
commit 9d404ac935
-1
View File
@@ -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,