mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fixed spelling of enviroment provider (Environment). :)
This commit is contained in:
parent
5764059f1d
commit
a00c20c1af
53 changed files with 245 additions and 245 deletions
|
@ -44,7 +44,7 @@ namespace NzbDrone.Common
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
if (!EnviromentProvider.IsProduction)
|
||||
if (!EnvironmentProvider.IsProduction)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ namespace NzbDrone.Common
|
|||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
if (!EnviromentProvider.IsProduction)
|
||||
if (!EnvironmentProvider.IsProduction)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
@ -84,10 +84,10 @@ namespace NzbDrone.Common
|
|||
{
|
||||
if(RestProvider == null)
|
||||
{
|
||||
if(EnviromentProvider.IsProduction)
|
||||
if(EnvironmentProvider.IsProduction)
|
||||
{
|
||||
logger.Warn("Rest provider wasn't provided. creating new one!");
|
||||
RestProvider = new RestProvider(new EnviromentProvider());
|
||||
RestProvider = new RestProvider(new EnvironmentProvider());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue