diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b1ee91..2aa77a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.34.4 | 2020-01-06 | `system()` fixed vitrual catch error | | 4.34.3 | 2020-01-06 | `graphics()` fixed non nvidia-smi controllers (win) | | 4.34.2 | 2020-01-05 | `system()` uuid lowercase as in uuid() | | 4.34.1 | 2020-01-05 | `graphics()` nvidia-smi detection improved | diff --git a/docs/history.html b/docs/history.html index c46b57c..3193a55 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.34.4 + 2020-01-06 + system() fixed vitrual catch error + 4.34.3 2020-01-06 diff --git a/docs/index.html b/docs/index.html index 6cd7d69..7a6a204 100644 --- a/docs/index.html +++ b/docs/index.html @@ -169,7 +169,7 @@
systeminformation
-
Current Version: 4.34.3
+
Current Version: 4.34.4
diff --git a/lib/system.js b/lib/system.js index 5db0b73..9e053d2 100644 --- a/lib/system.js +++ b/lib/system.js @@ -89,7 +89,7 @@ function system(callback) { if (disksById.indexOf('_QEMU_') >= 0 || disksById.indexOf('_VBOX_') >= 0) { result.virtual = true; } - } catch { + } catch (e) { util.noop(); } }