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

@@ -170,6 +170,11 @@ namespace Emby.Server.Implementations.Collections
{
var item = _libraryManager.GetItemById(itemId);
if (string.IsNullOrWhiteSpace(item.Path))
{
continue;
}
if (item == null)
{
throw new ArgumentException("No item exists with the supplied Id");