mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-01 13:26:56 +01:00
Fixed: (TorrentPotato) Title not being decoded
This commit is contained in:
parent
e241112915
commit
3e95bc4056
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
var torrentInfo = new TorrentInfo
|
||||
{
|
||||
Guid = GetGuid(torrent),
|
||||
Title = torrent.release_name,
|
||||
Title = WebUtility.HtmlDecode(torrent.release_name),
|
||||
Categories = new List<IndexerCategory> { NewznabStandardCategory.Movies },
|
||||
Size = torrent.size * 1000 * 1000,
|
||||
DownloadUrl = torrent.download_url,
|
||||
|
|
|
|||
Loading…
Reference in a new issue