diff --git a/src/NzbDrone.Core/History/HistoryService.cs b/src/NzbDrone.Core/History/HistoryService.cs index 5de72f740..c65107c55 100644 --- a/src/NzbDrone.Core/History/HistoryService.cs +++ b/src/NzbDrone.Core/History/HistoryService.cs @@ -91,7 +91,7 @@ namespace NzbDrone.Core.History history.Data.Add("ElapsedTime", message.Time.ToString()); history.Data.Add("Query", message.Query.SearchTerm ?? string.Empty); - history.Data.Add("Categories", string.Join(',', message.Query.Categories) ?? string.Empty); + history.Data.Add("Categories", string.Join(",", message.Query.Categories) ?? string.Empty); history.Data.Add("Successful", message.Successful.ToString()); history.Data.Add("QueryResults", message.Results.HasValue ? message.Results.ToString() : null);