From bae69c0ef3639d5a1647815dd27225d0267c587a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Fern=C3=A1ndez?= Date: Tue, 15 Oct 2019 22:51:36 +0200 Subject: [PATCH] show android mountpoint on system stats (#5493) --- plugins/systemstat.koplugin/main.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/systemstat.koplugin/main.lua b/plugins/systemstat.koplugin/main.lua index e60e20c54..ddacc9416 100644 --- a/plugins/systemstat.koplugin/main.lua +++ b/plugins/systemstat.koplugin/main.lua @@ -24,6 +24,8 @@ function SystemStat:init() self.storage_filter = "' /mnt/us$'" elseif Device:isSDL() then self.storage_filter = "/dev/sd" + elseif Device:isAndroid() then + self.storage_filter = Device.external_storage() end end