aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-04-11 19:33:36 +0900
committerdkanada <dkanada@users.noreply.github.com>2020-04-11 19:33:36 +0900
commit8e9aeb84b18f43b6fe8dd89ab84f1627bf2e8dbd (patch)
tree6b2e84fbeae99db49aa423d8dee5067f43e30551 /Emby.Server.Implementations/ApplicationHost.cs
parent974a04c12939068b23b62ee6ebb1e7fc2e830eec (diff)
remove release channel from plugin classes
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index ad77ab8b4..3cf4d6c6d 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -211,19 +211,6 @@ namespace Emby.Server.Implementations
public IFileSystem FileSystemManager { get; set; }
- /// <inheritdoc />
- public ReleaseChannel SystemUpdateLevel
- {
- get
- {
-#if NIGHTLY
- return PackageChannel.Nightly;
-#else
- return ReleaseChannel.Stable;
-#endif
- }
- }
-
/// <summary>
/// Gets or sets the service provider.
/// </summary>
@@ -1416,7 +1403,6 @@ namespace Emby.Server.Implementations
SupportsLibraryMonitor = true,
EncoderLocation = MediaEncoder.EncoderLocation,
SystemArchitecture = RuntimeInformation.OSArchitecture,
- SystemUpdateLevel = SystemUpdateLevel,
PackageName = StartupOptions.PackageName
};
}