diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-29 22:42:01 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-29 22:42:01 -0400 |
| commit | 7a41ef124509e8744af1d21a9b45863d358ad047 (patch) | |
| tree | ce81c6ff115c8ee1c65e2f722455eaa977b88b8a /Emby.Common.Implementations/BaseApplicationHost.cs | |
| parent | 3c82d8540bffd9ae63a806e8a7a899cd5e142991 (diff) | |
3.2.17.20
Diffstat (limited to 'Emby.Common.Implementations/BaseApplicationHost.cs')
| -rw-r--r-- | Emby.Common.Implementations/BaseApplicationHost.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Emby.Common.Implementations/BaseApplicationHost.cs b/Emby.Common.Implementations/BaseApplicationHost.cs index 8d0ee993f..d16afbce3 100644 --- a/Emby.Common.Implementations/BaseApplicationHost.cs +++ b/Emby.Common.Implementations/BaseApplicationHost.cs @@ -174,9 +174,15 @@ namespace Emby.Common.Implementations } } - public virtual PackageVersionClass SystemUpdateLevel + public PackageVersionClass SystemUpdateLevel { - get { return PackageVersionClass.Release; } + get { + +#if BETA + return PackageVersionClass.Beta; +#endif + return PackageVersionClass.Release; + } } public virtual string OperatingSystemDisplayName |
