bugfix diskLayout().size

This commit is contained in:
Sebastian Hildebrandt 2017-11-28 20:16:50 +01:00
parent ef6747aa1c
commit 24e4477c7a
2 changed files with 2 additions and 1 deletions

View File

@ -99,6 +99,7 @@ Other changes
| Version | Date | Comment |
| -------------- | -------------- | -------- |
| 3.33.7 | 2017-11-28 | bugfix diskLayout().size |
| 3.33.6 | 2017-11-16 | bugfix diskLayout().size |
| 3.33.5 | 2017-11-09 | code cleanup |
| 3.33.4 | 2017-11-09 | bugfix graphics controller win (bytes) |

View File

@ -584,8 +584,8 @@ function diskLayout(callback) {
}
const sizeString = util.getValue(lines, 'size', ':', true).trim();
const sizeValue = sizeString.match(/\(([^)]+)\)/)[1];
if (sizeString && lines.length > 0 && lines[0].trim() === 'disk') {
const sizeValue = sizeString.match(/\(([^)]+)\)/)[1];
result.push({
type: (mediumType === '0' ? 'SSD' : (mediumType === '1' ? 'HD' : (device.indexOf('SSD') > -1 ? 'SSD' : 'HD'))), // to be tested ... /sys/block/sda/queue/rotational
name: util.getValue(lines, 'product:', ':', true),