فهرست منبع

add people null check

Luke Pulverenti 9 سال پیش
والد
کامیت
c135bb17f2
1فایلهای تغییر یافته به همراه6 افزوده شده و 3 حذف شده
  1. 6 3
      MediaBrowser.Server.Implementations/Library/Validators/PeopleValidator.cs

+ 6 - 3
MediaBrowser.Server.Implementations/Library/Validators/PeopleValidator.cs

@@ -165,11 +165,14 @@ namespace MediaBrowser.Server.Implementations.Library.Validators
 
                 var item = _libraryManager.GetItemById(id);
 
-                await _libraryManager.DeleteItem(item, new DeleteOptions
+                if (item != null)
                 {
-                    DeleteFileLocation = false
+                    await _libraryManager.DeleteItem(item, new DeleteOptions
+                    {
+                        DeleteFileLocation = false
 
-                }).ConfigureAwait(false);
+                    }).ConfigureAwait(false);
+                }
             }
 
             progress.Report(100);