aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-10-10 15:27:02 +0100
committerGreenback <jimcartlidge@yahoo.co.uk>2020-10-10 15:27:02 +0100
commit1ee1f9c8a7d6f7a32d77d14351df040d5f3349fc (patch)
tree2cb72abead5b5a5f62a26aafd3dc64af085ad475
parentb34d6fec3db8b00aee11a8ff0c165048abed0ec1 (diff)
Fixed web interface.
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index e9cac8fa4..559a040a8 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1111,9 +1111,9 @@ namespace Emby.Server.Implementations
}
else
{
- // Un-versioned folder - Add it under the path name and version 0.0.0.1.
+ // Un-versioned folder - Add it under the path name and version 0.0.0.1.
versions.Add((new Version(0, 0, 0, 1), metafile, dir));
- }
+ }
}
}
catch
@@ -1212,6 +1212,9 @@ namespace Emby.Server.Implementations
// Xbmc
yield return typeof(ArtistNfoProvider).Assembly;
+ // Network
+ yield return typeof(NetworkManager).Assembly;
+
foreach (var i in GetAssembliesWithPartsInternal())
{
yield return i;