mirror of https://github.com/Sonarr/Sonarr
Rare timing issue on first-use causing duplicate naming config.
This commit is contained in:
parent
4ca5e978ac
commit
0553a39a02
|
@ -19,11 +19,19 @@ namespace NzbDrone.Core.Organizer
|
|||
{
|
||||
var config = _repository.SingleOrDefault();
|
||||
|
||||
if (config == null)
|
||||
{
|
||||
lock (_repository)
|
||||
{
|
||||
config = _repository.SingleOrDefault();
|
||||
|
||||
if (config == null)
|
||||
{
|
||||
_repository.Insert(NamingConfig.Default);
|
||||
config = _repository.Single();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return config;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue