mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
@@ -33,7 +33,7 @@ namespace Jackett.Common.Indexers
|
|||||||
public GazelleGamesApi(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
|
public GazelleGamesApi(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
|
||||||
ICacheService cs)
|
ICacheService cs)
|
||||||
: base(id: "gazellegamesapi",
|
: base(id: "gazellegamesapi",
|
||||||
name: "GazelleGamesApi",
|
name: "GazelleGames (API)",
|
||||||
description: "A gaming tracker",
|
description: "A gaming tracker",
|
||||||
link: "https://gazellegames.net/",
|
link: "https://gazellegames.net/",
|
||||||
caps: new TorznabCapabilities(),
|
caps: new TorznabCapabilities(),
|
||||||
@@ -257,7 +257,7 @@ namespace Jackett.Common.Indexers
|
|||||||
var grabs = ParseUtil.CoerceLong(torrent["Snatched"].ToString());
|
var grabs = ParseUtil.CoerceLong(torrent["Snatched"].ToString());
|
||||||
var seeders = ParseUtil.CoerceLong(torrent["Seeders"].ToString());
|
var seeders = ParseUtil.CoerceLong(torrent["Seeders"].ToString());
|
||||||
var leechers = ParseUtil.CoerceLong(torrent["Leechers"].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>();
|
List<string> tags = new List<string>();
|
||||||
string[] tagNames = { "Format", "Encoding", "Region", "Language", "Scene", "Miscellaneous", "GameDOXType", "GameDOXVers" };
|
string[] tagNames = { "Format", "Encoding", "Region", "Language", "Scene", "Miscellaneous", "GameDOXType", "GameDOXVers" };
|
||||||
|
Reference in New Issue
Block a user