From 091a00cba0eeb3e075e328dab8ea6ef7297ad130 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:36:30 +0100 Subject: [PATCH] Added GM501G to the list of devices without WMI key processing --- app/AppConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index a63f26ec..ffe9e047 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -1,4 +1,4 @@ -using GHelper.Mode; +using GHelper.Mode; using System.Management; using System.Text.Json; @@ -436,7 +436,7 @@ public static class AppConfig public static bool NoWMI() { - return ContainsModel("GL704G"); + return ContainsModel("GL704G") || ContainsModel("GM501G"); } public static bool IsNoDirectRGB()