From 628ec9c53f50f9f13f1ff60d4ce534b465491ea0 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 27 Dec 2020 23:11:47 -0500 Subject: [PATCH] Fix String instead of Char in HistoryService --- src/NzbDrone.Core/History/HistoryService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);