aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-09-13 17:29:10 +0100
committerGitHub <noreply@github.com>2020-09-13 17:29:10 +0100
commit12fb827405473d9f499848ce2098008fc96d0321 (patch)
treef8b8129b3c36fb82dabc0486f03d404e1a8e6e30
parent008aa51eb731c926df3c584fed8d7ccad1d8c94a (diff)
Update Emby.Server.Implementations/ApplicationHost.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index cf55f392d..db70b6203 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1054,7 +1054,7 @@ namespace Emby.Server.Implementations
{
try
{
- var manifest = serializer.DeserializeFromFile<PlugInManifest>(dir + "\\meta.json");
+ var manifest = serializer.DeserializeFromFile<PlugInManifest>(Path.Combine(dir, "meta.json");
if (!Version.TryParse(manifest.TargetAbi, out var targetAbi))
{