mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -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
|
@ -6,11 +6,11 @@ namespace NzbDrone.Web.Controllers
|
|||
{
|
||||
public class SharedController : Controller
|
||||
{
|
||||
private readonly EnviromentProvider _enviromentProvider;
|
||||
private readonly EnvironmentProvider _environmentProvider;
|
||||
|
||||
public SharedController(EnviromentProvider enviromentProvider)
|
||||
public SharedController(EnvironmentProvider environmentProvider)
|
||||
{
|
||||
_enviromentProvider = enviromentProvider;
|
||||
_environmentProvider = environmentProvider;
|
||||
}
|
||||
|
||||
public ActionResult Index()
|
||||
|
@ -22,7 +22,7 @@ namespace NzbDrone.Web.Controllers
|
|||
[OutputCache(Duration = 3600)]
|
||||
public ActionResult Footer()
|
||||
{
|
||||
return PartialView(new FooterModel { BuildTime = _enviromentProvider.BuildDateTime, Version = _enviromentProvider.Version });
|
||||
return PartialView(new FooterModel { BuildTime = _environmentProvider.BuildDateTime, Version = _environmentProvider.Version });
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue