From bf46f682d4c92f7eda8006d874a3639b7045f2c2 Mon Sep 17 00:00:00 2001 From: Erik Kallen Date: Mon, 7 Aug 2017 02:28:53 +0200 Subject: [PATCH] fix(linux): The productID should be a number not a description string (#1279) fix: #1278 --- lib/bindings/linux-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bindings/linux-list.js b/lib/bindings/linux-list.js index 4f291ddf6..5d35a4c21 100644 --- a/lib/bindings/linux-list.js +++ b/lib/bindings/linux-list.js @@ -14,7 +14,7 @@ function propName(name) { 'ID_VENDOR_ENC': 'manufacturer', 'ID_SERIAL_SHORT': 'serialNumber', 'ID_VENDOR_ID': 'vendorId', - 'ID_MODEL_ENC': 'productId', + 'ID_MODEL_ID': 'productId', 'DEVLINKS': 'pnpId' }[name.toUpperCase()]; }