mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07: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)
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue