From 9514caef946a8bf98deb3cd097f2c9385ea214b6 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sat, 1 Jun 2024 11:19:34 +0200 Subject: [PATCH] Removed unsupported charge limits --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 7e089cfb..bfe68f63 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -633,7 +633,7 @@ public static class AppConfig public static bool IsChargeLimit6080() { - return true || IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617")); + return IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617")); }