diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0068956..418fb24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -82,6 +82,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment |
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
+| 5.17.10 | 2023-02-23 | `blockDevices()` fixed parsing raids (linux) |
| 5.17.9 | 2023-02-11 | `system()` fixed model Apple Silicon |
| 5.17.8 | 2023-01-30 | `system()` improved virtual host detection for Parallels |
| 5.17.7 | 2023-01-29 | `processes()` fixed CPU usage info (windows) |
diff --git a/docs/history.html b/docs/history.html
index 221d3fe..e3dcc20 100644
--- a/docs/history.html
+++ b/docs/history.html
@@ -57,6 +57,11 @@
+
+ | 5.17.10 |
+ 2023-02-23 |
+ blockDevices() fixed parsing raids (linux) |
+
| 5.17.9 |
2023-02-11 |
diff --git a/docs/index.html b/docs/index.html
index edb8927..f44779f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -170,7 +170,7 @@
systeminformation
- New Version: 5.17.9
+ New Version: 5.17.10
@@ -212,7 +212,7 @@
Downloads last month
diff --git a/lib/filesystem.js b/lib/filesystem.js
index 5fdc870..c8f81ba 100644
--- a/lib/filesystem.js
+++ b/lib/filesystem.js
@@ -384,7 +384,7 @@ function decodeMdabmData(lines) {
const raid = util.getValue(lines, 'md_level', '=');
const members = [];
lines.forEach(line => {
- if (line.toLowerCase().startsWith('md_device_ev') && line.toLowerCase().indexOf('/dev/') > 0) {
+ if (line.toLowerCase().startsWith('md_device_dev') && line.toLowerCase().indexOf('/dev/') > 0) {
members.push(line.split('/dev/')[1]);
}
});