Fixed: Ensure default config file on starting app

(cherry picked from commit 5326a102e23eacfc1132eb544a92af737a531df5)
pull/3522/head
Bogdan 2 years ago committed by Qstick
parent cb3d6d7387
commit ed2d127240

@ -24,6 +24,7 @@ namespace NzbDrone.Core.Configuration
{ {
Dictionary<string, object> GetConfigDictionary(); Dictionary<string, object> GetConfigDictionary();
void SaveConfigDictionary(Dictionary<string, object> configValues); void SaveConfigDictionary(Dictionary<string, object> configValues);
void EnsureDefaultConfigFile();
string BindAddress { get; } string BindAddress { get; }
int Port { get; } int Port { get; }
@ -251,7 +252,7 @@ namespace NzbDrone.Core.Configuration
public T GetValueEnum<T>(string key, T defaultValue, bool persist = true) 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) public string GetValue(string key, object defaultValue, bool persist = true)
@ -310,7 +311,7 @@ namespace NzbDrone.Core.Configuration
SetValue(key, value.ToString().ToLower()); SetValue(key, value.ToString().ToLower());
} }
private void EnsureDefaultConfigFile() public void EnsureDefaultConfigFile()
{ {
if (!File.Exists(_configFile)) if (!File.Exists(_configFile))
{ {

@ -225,6 +225,8 @@ namespace NzbDrone.Host
appFolderFactory.Register(); appFolderFactory.Register();
pidFileProvider.Write(); pidFileProvider.Write();
configFileProvider.EnsureDefaultConfigFile();
reconfigureLogging.Reconfigure(); reconfigureLogging.Reconfigure();
EnsureSingleInstance(false, startupContext, singleInstancePolicy); EnsureSingleInstance(false, startupContext, singleInstancePolicy);

Loading…
Cancel
Save