From 3c960896f4273fcebfab4cdf52752d4b1367d2e3 Mon Sep 17 00:00:00 2001 From: snowykami Date: Sat, 5 Oct 2024 03:21:33 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E4=BF=AE=E5=A4=8D=E8=BF=90?= =?UTF-8?q?=E8=A1=8C=E6=97=B6=E9=97=B4=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server_status/api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server_status/api.py b/server_status/api.py index 6e6b4fa..1e989fd 100644 --- a/server_status/api.py +++ b/server_status/api.py @@ -242,6 +242,9 @@ class Client: continue self.hardware.disks[part.device] = { + "mountpoint": part.mountpoint, + "device": part.device, + "fstype": part.fstype, "total": usage.total, "used": usage.used, }