mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
cache busting for js file based on server version.
This commit is contained in:
parent
5c3f0203e5
commit
0916c8b8d1
12 changed files with 205 additions and 126 deletions
|
@ -24,13 +24,13 @@ namespace NzbDrone.Api.System
|
|||
{
|
||||
return new
|
||||
{
|
||||
Version = _environmentProvider.Version,
|
||||
Version = _environmentProvider.Version.ToString(),
|
||||
AppData = _environmentProvider.GetAppDataPath(),
|
||||
IsAdmin = _environmentProvider.IsAdmin,
|
||||
IsUserInteractive = _environmentProvider.IsUserInteractive,
|
||||
BuildTime = _environmentProvider.BuildDateTime,
|
||||
StartupPath = _environmentProvider.StartUpPath,
|
||||
OsVersion = _environmentProvider.GetOsVersion(),
|
||||
OsVersion = _environmentProvider.GetOsVersion().ToString(),
|
||||
IsMono = EnvironmentProvider.IsMono,
|
||||
IsProduction = EnvironmentProvider.IsProduction,
|
||||
IsDebug = EnvironmentProvider.IsDebug,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue