ggnapi: fix indexer name and title decoding. resolves #13544 (#13608)

This commit is contained in:
mikeoscar2006 2022-09-28 16:52:32 +05:30 committed by GitHub
parent 035e03bf3e
commit 426e674e3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ namespace Jackett.Common.Indexers
public GazelleGamesApi(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
ICacheService cs)
: base(id: "gazellegamesapi",
name: "GazelleGamesApi",
name: "GazelleGames (API)",
description: "A gaming tracker",
link: "https://gazellegames.net/",
caps: new TorznabCapabilities(),
@ -257,7 +257,7 @@ namespace Jackett.Common.Indexers
var grabs = ParseUtil.CoerceLong(torrent["Snatched"].ToString());
var seeders = ParseUtil.CoerceLong(torrent["Seeders"].ToString());
var leechers = ParseUtil.CoerceLong(torrent["Leechers"].ToString());
var title = torrent["ReleaseTitle"].ToString();
var title = WebUtility.HtmlDecode(torrent["ReleaseTitle"].ToString());
List<string> tags = new List<string>();
string[] tagNames = { "Format", "Encoding", "Region", "Language", "Scene", "Miscellaneous", "GameDOXType", "GameDOXVers" };