add FindByPath error handling

This commit is contained in:
Luke Pulverenti
2017-05-30 14:24:50 -04:00
parent 01843ad4c3
commit d8ec7109ab
5 changed files with 34 additions and 1 deletions

View File

@@ -198,6 +198,11 @@ namespace Emby.Server.Implementations.Playlists
foreach (var item in items)
{
if (string.IsNullOrWhiteSpace(item.Path))
{
continue;
}
list.Add(LinkedChild.Create(item));
}