Fixed Strike

This commit is contained in:
unknown
2015-08-02 12:18:06 -06:00
parent 71fb184383
commit 4a568b9a3d

View File

@@ -18,9 +18,10 @@ namespace Jackett.Indexers
{
public class Strike : BaseIndexer, IIndexer
{
private string DownloadUrl { get { return baseUrl + "torrents/api/download/{0}.torrent"; } }
private string SearchUrl { get { return baseUrl + "api/v2/torrents/search/?category=TV&phrase={0}"; } }
private string DownloadUrl { get { return baseUri + "torrents/api/download/{0}.torrent"; } }
private string SearchUrl { get { return baseUri + "api/v2/torrents/search/?category=TV&phrase={0}"; } }
private string baseUrl = null;
private Uri baseUri { get { return new Uri(baseUrl); } }
public Strike(IIndexerManagerService i, Logger l, IWebClient wc)
: base(name: "Strike",