Browse Source

Fixed Config loading error

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
bf9d574403
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Config/Config.cs

+ 1
- 1
IPA.Loader/Config/Config.cs View File

@ -131,7 +131,7 @@ namespace IPA.Config
if (provider != null)
{
provider.Filename = Path.Combine(BeatSaber.UserDataPath, configName);
configProviders.Add(provider.LastModified, provider);
configProviders.Add(Ref.Create(provider.LastModified), provider);
}
return provider;


Loading…
Cancel
Save