1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

Fixes for PR 2.3.4.0

This commit is contained in:
RaidMax
2019-01-27 19:45:35 -06:00
parent 13b6e1a3ec
commit a16df61ffd
6 changed files with 16 additions and 23 deletions

View File

@ -41,7 +41,7 @@ namespace SharedLibraryCore.Configuration
return File.WriteAllTextAsync(Path.Join(Utilities.OperatingDirectory, "Configuration", $"{Filename}.json"), appConfigJSON);
}
public T Configuration() => _configuration == null ? throw new ServerException("Configuration is null") : _configuration;
public T Configuration() => _configuration;
public void Set(T config)
{