Remove redundant checks

This commit is contained in:
cvium 2021-03-06 20:53:50 +01:00
parent 54211b921c
commit 67af30d1ff
1 changed files with 0 additions and 10 deletions

View File

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