Browse Source

Remove redundant checks

cvium 4 years ago
parent
commit
67af30d1ff
1 changed files with 0 additions and 10 deletions
  1. 0 10
      Emby.Server.Implementations/Library/LibraryManager.cs

+ 0 - 10
Emby.Server.Implementations/Library/LibraryManager.cs

@@ -2783,11 +2783,6 @@ namespace Emby.Server.Implementations.Library
                 {
                     foreach (var pathInfo in libraryOptions.PathInfos)
                     {
-                        if (string.IsNullOrWhiteSpace(pathInfo.Path) || string.IsNullOrWhiteSpace(pathInfo.NetworkPath))
-                        {
-                            continue;
-                        }
-
                         if (path.TryReplaceSubPath(pathInfo.Path, pathInfo.NetworkPath, out var newPath))
                         {
                             return newPath;
@@ -2809,11 +2804,6 @@ namespace Emby.Server.Implementations.Library
 
             foreach (var map in _configurationManager.Configuration.PathSubstitutions)
             {
-                if (string.IsNullOrWhiteSpace(map.From))
-                {
-                    continue;
-                }
-
                 if (path.TryReplaceSubPath(map.From, map.To, out var newPath))
                 {
                     return newPath;