Merge pull request #5409 from ikomhoog/master

This commit is contained in:
Joshua M. Boniface
2021-03-08 16:39:40 -05:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ namespace Emby.Server.Implementations.Library
{
newPath = null;
if (path.Length == 0 || subPath.Length == 0 || newSubPath.Length == 0 || subPath.Length > path.Length)
if (string.IsNullOrEmpty(path) || string.IsNullOrEmpty(subPath) || string.IsNullOrEmpty(newSubPath) || subPath.Length > path.Length)
{
return false;
}