فهرست منبع

fix possible null reference with search hints

Luke Pulverenti 11 سال پیش
والد
کامیت
96fd6459b2
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      MediaBrowser.Server.Implementations/Library/LuceneSearchEngine.cs

+ 1 - 0
MediaBrowser.Server.Implementations/Library/LuceneSearchEngine.cs

@@ -87,6 +87,7 @@ namespace MediaBrowser.Server.Implementations.Library
 
                     return list;
                 })
+                .Where(i => !string.IsNullOrEmpty(i))
                 .Distinct(StringComparer.OrdinalIgnoreCase)
                 .ToList();