mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-17 10:20:48 +02:00
Add ContentSummary to HDBits requests
This commit is contained in:
parent
34cd68fa07
commit
e55d6b827a
1 changed files with 2 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
|||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using Newtonsoft.Json;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Common.Http;
|
||||
using NzbDrone.Common.Serializer;
|
||||
|
|
@ -64,6 +65,7 @@ private IEnumerable<IndexerRequest> GetRequest(TorrentQuery query)
|
|||
query.Medium = Settings.Mediums.ToArray();
|
||||
|
||||
request.SetContent(query.ToJson());
|
||||
request.ContentSummary = query.ToJson(Formatting.None);
|
||||
|
||||
yield return new IndexerRequest(request);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue