|
|
@ -21,8 +21,16 @@ namespace NzbDrone.Core.Organizer
|
|
|
|
|
|
|
|
|
|
|
|
if (config == null)
|
|
|
|
if (config == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_repository.Insert(NamingConfig.Default);
|
|
|
|
lock (_repository)
|
|
|
|
config = _repository.Single();
|
|
|
|
{
|
|
|
|
|
|
|
|
config = _repository.SingleOrDefault();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (config == null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
_repository.Insert(NamingConfig.Default);
|
|
|
|
|
|
|
|
config = _repository.Single();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return config;
|
|
|
|
return config;
|
|
|
@ -33,4 +41,4 @@ namespace NzbDrone.Core.Organizer
|
|
|
|
_repository.Upsert(namingConfig);
|
|
|
|
_repository.Upsert(namingConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|