mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
Remove redundant checks
This commit is contained in:
parent
54211b921c
commit
67af30d1ff
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user