mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 21:26:08 +00:00
Fix automapper encoding handling
This commit is contained in:
parent
009cc28415
commit
0b302915d6
1 changed files with 2 additions and 2 deletions
|
@ -131,14 +131,14 @@ namespace Jackett
|
|||
{
|
||||
cfg.CreateMap<WebClientByteResult, WebClientStringResult>().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<WebClientStringResult, WebClientByteResult>().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);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue