mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
Log payload for set fields request in Calibre
This commit is contained in:
parent
05aa35a54d
commit
a0ab224acd
1 changed files with 2 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
|||
using System.Threading.Tasks;
|
||||
using FluentValidation;
|
||||
using FluentValidation.Results;
|
||||
using Newtonsoft.Json;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Cache;
|
||||
using NzbDrone.Common.Disk;
|
||||
|
|
@ -304,6 +305,7 @@ private void ExecuteSetFields(int id, CalibreChangesPayload payload, CalibreSett
|
|||
|
||||
var request = builder.Build();
|
||||
request.SetContent(payload.ToJson());
|
||||
request.ContentSummary = payload.ToJson(Formatting.None);
|
||||
|
||||
_httpClient.Execute(request);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue