diff options
| author | Greenback <jimcartlidge@yahoo.co.uk> | 2020-11-20 14:14:00 +0000 |
|---|---|---|
| committer | Greenback <jimcartlidge@yahoo.co.uk> | 2020-11-20 14:14:00 +0000 |
| commit | d6b0a939f73e30192d39f25bb745f1893606f7fb (patch) | |
| tree | c8f57e9aff7c79828e38d42a9c4934ece1dfb130 | |
| parent | 32b92641fbb068a89aeb47956e6ce0e98b1d3918 (diff) | |
fixed
| -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 74e472be6..073baf6c0 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -779,7 +779,7 @@ namespace Emby.Server.Implementations // Ensure the version number matches the Plugin Manifest information. foreach (var item in _pluginsManifests) { - if (item.Path.Equals(plugin.AssemblyFilePath, StringComparison.OrdinalIgnoreCase)) + if (Path.GetDirectoryName(plugin.AssemblyFilePath).Equals(item.Path, StringComparison.OrdinalIgnoreCase)) { // Update version number to that of the manifest. assemblyPlugin.SetAttributes( |
