From 30b1edbff038b84a32b257928f94ce8b2303573d Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 20 Sep 2023 20:58:39 +0300 Subject: [PATCH] Add content summary for bulk movie info --- src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs b/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs index 4bbe9a37e..d27823c07 100644 --- a/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs +++ b/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs @@ -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;