mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04: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 @@ namespace NzbDrone.Core.Indexers.Definitions.TorrentPotato
|
|||
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…
Add table
Add a link
Reference in a new issue