From 66c41e230265af9ef30d93ec456d031b21b864f4 Mon Sep 17 00:00:00 2001 From: bergware Date: Sun, 5 Feb 2023 09:49:24 +0100 Subject: [PATCH] System info: minor change --- plugins/dynamix/scripts/system_information | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dynamix/scripts/system_information b/plugins/dynamix/scripts/system_information index 9526d58d7..b14939ed6 100755 --- a/plugins/dynamix/scripts/system_information +++ b/plugins/dynamix/scripts/system_information @@ -153,7 +153,7 @@ $list[] = "$memory$memory_installed $unit $memory_type $ecc("._ foreach ($memory_devices as $device) { if (empty($device['Type']) || $device['Type']=='Unknown') continue; $size = preg_replace('/( .)B$/','$1iB',$device['Size']??'0'); - $list[] = "".$device['Bank Locator'].": ".($device['Manufacturer']??'')." ".($device['Part Number']??'').", $size ".($device['Type']??'')." @ ".($device['Configured Memory Speed']??'').""; + $list[] = "".$device['Locator'].": ".($device['Manufacturer']??'')." ".($device['Part Number']??'').", $size ".($device['Type']??'')." @ ".($device['Configured Memory Speed']??'').""; } exec("ls --indicator-style=none /sys/class/net|grep -Po '^(bond|eth)\d+$'",$sPorts);