mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 10:48:46 +00:00
Rare timing issue on first-use causing duplicate naming config.
This commit is contained in:
parent
4ca5e978ac
commit
0553a39a02
1 changed files with 11 additions and 3 deletions
|
@ -21,8 +21,16 @@ namespace NzbDrone.Core.Organizer
|
|||
|
||||
if (config == null)
|
||||
{
|
||||
_repository.Insert(NamingConfig.Default);
|
||||
config = _repository.Single();
|
||||
lock (_repository)
|
||||
{
|
||||
config = _repository.SingleOrDefault();
|
||||
|
||||
if (config == null)
|
||||
{
|
||||
_repository.Insert(NamingConfig.Default);
|
||||
config = _repository.Single();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return config;
|
||||
|
@ -33,4 +41,4 @@ namespace NzbDrone.Core.Organizer
|
|||
_repository.Upsert(namingConfig);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue