diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3f730a..861df73 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -80,6 +80,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment |
| -------------- | -------------- | -------- |
+| 5.11.24 | 2022-07-10 | `fsSize()` fix parsing linux (df) |
| 5.11.23 | 2022-07-09 | `fsSize()` fixes (linux), `baseboard()` fix (windows), `cpuTemperatur()` fix linux |
| 5.11.22 | 2022-06-24 | `processes()` improved parsing (linux, mac OS) |
| 5.11.21 | 2022-06-17 | `fsSize()` fix parsing linux (df) |
diff --git a/docs/history.html b/docs/history.html
index b31a764..abcdf44 100644
--- a/docs/history.html
+++ b/docs/history.html
@@ -58,7 +58,12 @@
- | 5.11.22 |
+ 5.11.24 |
+ 2022-07-10 |
+ fsSize() fix parsing linux (df) |
+
+
+ | 5.11.23 |
2022-07-09 |
fsSize(),basebard(),cpuTemeratur() fixes |
diff --git a/docs/index.html b/docs/index.html
index 9c6b204..aada24b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -170,7 +170,7 @@
systeminformation
- New Version: 5.11.23
+ New Version: 5.11.24
diff --git a/lib/filesystem.js b/lib/filesystem.js
index f09bcd4..02fb3ec 100644
--- a/lib/filesystem.js
+++ b/lib/filesystem.js
@@ -50,7 +50,7 @@ function fsSize(callback) {
}
function isLinuxTmpFs(fs) {
- const linuxTmpFileSystems = ['rootfs', 'unionfs', 'squashfs', 'cramfs', 'initrd', 'initramfs', 'devtmpfs', 'tmpfs', 'udev', 'devfs', 'specfs', 'type', 'appimaged', 'fuse.'];
+ const linuxTmpFileSystems = ['rootfs', 'unionfs', 'squashfs', 'cramfs', 'initrd', 'initramfs', 'devtmpfs', 'tmpfs', 'udev', 'devfs', 'specfs', 'type', 'appimaged'];
let result = false;
linuxTmpFileSystems.forEach(linuxFs => {
if (fs.toLowerCase().indexOf(linuxFs) >= 0) result = true;