diff --git a/src/Jackett.Common/Plumbing/JackettModule.cs b/src/Jackett.Common/Plumbing/JackettModule.cs index 82940082a..8f30a061a 100644 --- a/src/Jackett.Common/Plumbing/JackettModule.cs +++ b/src/Jackett.Common/Plumbing/JackettModule.cs @@ -131,14 +131,14 @@ namespace Jackett { cfg.CreateMap().ForMember(x => x.Content, opt => opt.Ignore()).AfterMap((be, str) => { - str.Content = Encoding.UTF8.GetString(be.Content); + str.Content = be.Request.Encoding.GetString(be.Content); }); cfg.CreateMap().ForMember(x => x.Content, opt => opt.Ignore()).AfterMap((str, be) => { if (!string.IsNullOrEmpty(str.Content)) { - be.Content = Encoding.UTF8.GetBytes(str.Content); + be.Content = str.Request.Encoding.GetBytes(str.Content); } });