mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-20 15:32:46 +01:00
Fix String instead of Char in HistoryService
This commit is contained in:
parent
ff926d71f7
commit
628ec9c53f
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ public void Handle(IndexerQueryEvent message)
|
|||
|
||||
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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue