Pārlūkot izejas kodu

Fix ConfigWrapper sections

Bepis 7 gadi atpakaļ
vecāks
revīzija
0acf245fec
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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);
         }