Quellcode durchsuchen

Fix ConfigWrapper sections

Bepis vor 7 Jahren
Ursprung
Commit
0acf245fec
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      BepInEx/ConfigWrapper.cs

+ 1 - 1
BepInEx/ConfigWrapper.cs

@@ -52,7 +52,7 @@ namespace BepInEx
             if (!Exists)
                 return Default;
 
-            var strVal = Config.GetEntry(Key, Section);
+            var strVal = Config.GetEntry(Key, null, Section);
             return (T)_converter.ConvertFrom(strVal);
         }