mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fixed Strike
This commit is contained in:
@@ -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",
|
||||
|
Reference in New Issue
Block a user