mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04:00
Fixed: (Core) Ensure default config file on starting app
Fixes #674 Fixes #1588
This commit is contained in:
parent
4e5cd05bbd
commit
c6ed5d65e0
2 changed files with 5 additions and 2 deletions
|
@ -25,6 +25,7 @@ namespace NzbDrone.Core.Configuration
|
|||
{
|
||||
Dictionary<string, object> GetConfigDictionary();
|
||||
void SaveConfigDictionary(Dictionary<string, object> configValues);
|
||||
void EnsureDefaultConfigFile();
|
||||
|
||||
string BindAddress { get; }
|
||||
int Port { get; }
|
||||
|
@ -258,7 +259,7 @@ namespace NzbDrone.Core.Configuration
|
|||
|
||||
public T GetValueEnum<T>(string key, T defaultValue, bool persist = true)
|
||||
{
|
||||
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue), persist);
|
||||
return (T)Enum.Parse(typeof(T), GetValue(key, defaultValue, persist));
|
||||
}
|
||||
|
||||
public string GetValue(string key, object defaultValue, bool persist = true)
|
||||
|
@ -317,7 +318,7 @@ namespace NzbDrone.Core.Configuration
|
|||
SetValue(key, value.ToString().ToLower());
|
||||
}
|
||||
|
||||
private void EnsureDefaultConfigFile()
|
||||
public void EnsureDefaultConfigFile()
|
||||
{
|
||||
if (!File.Exists(_configFile))
|
||||
{
|
||||
|
|
|
@ -225,6 +225,8 @@ namespace NzbDrone.Host
|
|||
appFolderFactory.Register();
|
||||
pidFileProvider.Write();
|
||||
|
||||
configFileProvider.EnsureDefaultConfigFile();
|
||||
|
||||
reconfigureLogging.Reconfigure();
|
||||
|
||||
EnsureSingleInstance(false, startupContext, singleInstancePolicy);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue