aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-02-26 01:58:39 +0900
committerdkanada <dkanada@users.noreply.github.com>2020-02-26 01:58:39 +0900
commit974a04c12939068b23b62ee6ebb1e7fc2e830eec (patch)
treec14da5282ea5ff9c109b0e2467b7378fc9fb55b6 /Emby.Server.Implementations/ApplicationHost.cs
parent557b165f01dbce29e575dc752b0833b454b45783 (diff)
update plugin classes for nightly builds
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index dee0edd26..ad77ab8b4 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -212,14 +212,14 @@ namespace Emby.Server.Implementations
public IFileSystem FileSystemManager { get; set; }
/// <inheritdoc />
- public PackageVersionClass SystemUpdateLevel
+ public ReleaseChannel SystemUpdateLevel
{
get
{
-#if BETA
- return PackageVersionClass.Beta;
+#if NIGHTLY
+ return PackageChannel.Nightly;
#else
- return PackageVersionClass.Release;
+ return ReleaseChannel.Stable;
#endif
}
}
@@ -1003,7 +1003,7 @@ namespace Emby.Server.Implementations
AuthenticatedAttribute.AuthService = AuthService;
}
- private async void PluginInstalled(object sender, GenericEventArgs<PackageVersionInfo> args)
+ private async void PluginInstalled(object sender, GenericEventArgs<VersionInfo> args)
{
string dir = Path.Combine(ApplicationPaths.PluginsPath, args.Argument.name);
var types = Directory.EnumerateFiles(dir, "*.dll", SearchOption.AllDirectories)