From 9862ca408a7e872b465cca40a84c707121842410 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Fri, 9 Dec 2016 17:17:19 +0100 Subject: [PATCH] Update PassThePopcorn URLs and encoding --- src/Jackett/Indexers/PassThePopcorn.cs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/Jackett/Indexers/PassThePopcorn.cs b/src/Jackett/Indexers/PassThePopcorn.cs index 2d58b1caa..8fdc570be 100644 --- a/src/Jackett/Indexers/PassThePopcorn.cs +++ b/src/Jackett/Indexers/PassThePopcorn.cs @@ -11,16 +11,17 @@ using System.Globalization; using System.Linq; using System.Threading.Tasks; using System.Web; +using System.Text; using Jackett.Models.IndexerConfig; namespace Jackett.Indexers { public class PassThePopcorn : BaseIndexer, IIndexer { - private string LoginUrl { get { return "https://tls.passthepopcorn.me/ajax.php?action=login"; } } - private string indexUrl { get { return "https://tls.passthepopcorn.me/ajax.php?action=login"; } } - private string SearchUrl { get { return "https://tls.passthepopcorn.me/torrents.php"; } } - private string DetailURL { get { return "https://tls.passthepopcorn.me/torrents.php?torrentid="; } } + private string LoginUrl { get { return "https://passthepopcorn.me/ajax.php?action=login"; } } + private string indexUrl { get { return "https://passthepopcorn.me/ajax.php?action=login"; } } + private string SearchUrl { get { return "https://passthepopcorn.me/torrents.php"; } } + private string DetailURL { get { return "https://passthepopcorn.me/torrents.php?torrentid="; } } private string AuthKey { get; set; } new ConfigurationDataBasicLoginWithFilterAndPasskey configData { @@ -41,6 +42,8 @@ namespace Jackett.Indexers Separate options with a space if using more than one option.
Filter options available:
GoldenPopcorn
Scene
Checked")) { + Encoding = Encoding.UTF8; + AddCategoryMapping(1, TorznabCatType.Movies); AddCategoryMapping(1, TorznabCatType.MoviesForeign); AddCategoryMapping(1, TorznabCatType.MoviesOther);