diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-09-13 17:29:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-13 17:29:10 +0100 |
| commit | 12fb827405473d9f499848ce2098008fc96d0321 (patch) | |
| tree | f8b8129b3c36fb82dabc0486f03d404e1a8e6e30 | |
| parent | 008aa51eb731c926df3c584fed8d7ccad1d8c94a (diff) | |
Update Emby.Server.Implementations/ApplicationHost.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
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)) { |
