Fixed spelling of enviroment provider (Environment). :)

This commit is contained in:
Mark McDowall
2012-03-06 18:59:43 -08:00
parent 5764059f1d
commit a00c20c1af
53 changed files with 245 additions and 245 deletions

View File

@@ -37,10 +37,10 @@ namespace NzbDrone.Core.Providers
if (!IsOnMasterBranch())
return;
if (EnviromentProvider.RegisterNewInstall)
if (EnvironmentProvider.RegisterNewInstall)
{
_deskMetricsClient.RegisterInstall();
EnviromentProvider.RegisterNewInstall = false;
EnvironmentProvider.RegisterNewInstall = false;
}
if (_deskMetricsClient.Started)
@@ -52,7 +52,7 @@ namespace NzbDrone.Core.Providers
}
catch (Exception e)
{
if (!EnviromentProvider.IsProduction)
if (!EnvironmentProvider.IsProduction)
throw;
logger.WarnException("Error while sending analytics data.", e);