fix playlist deletion

This commit is contained in:
dkanada
2019-12-14 12:51:27 +09:00
parent f1fc6ef59f
commit 1b2453b4e9
3 changed files with 27 additions and 15 deletions

View File

@@ -394,7 +394,7 @@ namespace Emby.Server.Implementations.Library
foreach (var fileSystemInfo in item.GetDeletePaths().ToList())
{
if (File.Exists(fileSystemInfo.FullName))
if (File.Exists(fileSystemInfo.FullName) || Directory.Exists(fileSystemInfo.FullName))
{
try
{