From 921d3c4519662929e7abe816b5305120df59810e Mon Sep 17 00:00:00 2001 From: JimmahDean Date: Mon, 27 May 2024 22:35:17 -0600 Subject: [PATCH] check the correct bcd field for limited memory --- client/data/Methods/System.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/data/Methods/System.cs b/client/data/Methods/System.cs index 52f708f..ca2fdf0 100644 --- a/client/data/Methods/System.cs +++ b/client/data/Methods/System.cs @@ -495,7 +495,7 @@ private static async Task GetStaticCoreCount() StaticCoreCount = null; } StaticCoreCount = output.Contains("numproc"); - LimitedMemory = output.Contains("allowedinmemorysettings"); + LimitedMemory = output.Contains("truncatememory"); } }