From d1f9bdf0ec6adb87ab49e31ed646133c17ee063c Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 24 Nov 2012 00:42:30 -0800 Subject: [PATCH] Empty searches in search history now show Fixed: Empty searches will show up in search history --- NzbDrone.Core/Providers/SearchHistoryProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Providers/SearchHistoryProvider.cs b/NzbDrone.Core/Providers/SearchHistoryProvider.cs index 4fb7e97a8..f746d18a3 100644 --- a/NzbDrone.Core/Providers/SearchHistoryProvider.cs +++ b/NzbDrone.Core/Providers/SearchHistoryProvider.cs @@ -70,7 +70,7 @@ namespace NzbDrone.Core.Providers ON Series.SeriesId = SearchHistory.SeriesId LEFT JOIN Episodes ON Episodes.EpisodeId = SearchHistory.EpisodeId - INNER JOIN SearchHistoryItems + LEFT JOIN SearchHistoryItems ON SearchHistoryItems.SearchHistoryId = SearchHistory.Id GROUP BY SearchHistory.Id, SearchHistory.SeriesId, SearchHistory.SeasonNumber, SearchHistory.EpisodeId, SearchHistory.SearchTime,