Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/3da72f54ef0649e5d42db8c2dad58211e44f9f48 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Add ContentSummary to HDBits requests

(cherry picked from commit b6f3bcb3093267c483a57e10ac425e871f1f7ba8)

Closes 
pull/8768/head
Bogdan 2 years ago
parent 7cfff20cad
commit 3da72f54ef

@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using Newtonsoft.Json;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Http;
using NzbDrone.Common.Serializer;
@ -74,6 +75,7 @@ namespace NzbDrone.Core.Indexers.HDBits
query.Medium = Settings.Mediums.ToArray();
request.SetContent(query.ToJson());
request.ContentSummary = query.ToJson(Formatting.None);
yield return new IndexerRequest(request);
}

Loading…
Cancel
Save