Add content summary for bulk movie info

This commit is contained in:
Bogdan 2023-09-20 20:58:39 +03:00
parent f20c260a4f
commit 30b1edbff0
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using NLog;
using NzbDrone.Common.Cloud;
using NzbDrone.Common.Extensions;
@ -140,6 +141,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
httpRequest.Headers.ContentType = "application/json";
httpRequest.SetContent(tmdbIds.ToJson());
httpRequest.ContentSummary = tmdbIds.ToJson(Formatting.None);
httpRequest.AllowAutoRedirect = true;
httpRequest.SuppressHttpError = true;