diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs index f992079ec..10fc688e1 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs @@ -48,7 +48,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) if (torrent.GoldenPopcorn) { - title = $"{title} ★"; + title = $"{title} 🍿"; } if (torrent.Checked) diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs index 6b58aaac3..773f18b79 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs @@ -15,7 +15,7 @@ public virtual IndexerPageableRequestChain GetRecentRequests() { var pageableRequests = new IndexerPageableRequestChain(); - pageableRequests.Add(GetRequest("")); + pageableRequests.Add(GetRequest(null)); return pageableRequests; } @@ -52,9 +52,9 @@ public virtual IndexerPageableRequestChain GetSearchRequests(SeasonSearchCriteri return new IndexerPageableRequestChain(); } - private IEnumerable GetRequest(string query) + private IEnumerable GetRequest(string searchParameters) { - var request = new IndexerRequest(string.Format("{0}/torrents.php?json=noredirect&searchstr={1}", Settings.BaseUrl.Trim().TrimEnd('/'), query), HttpAccept.Json); + var request = new IndexerRequest(string.Format("{0}/torrents.php?json=noredirect&searchstr={1}", Settings.BaseUrl.Trim().TrimEnd('/'), searchParameters), HttpAccept.Json); foreach (var cookie in HttpHeader.ParseCookies(Settings.Cookie)) { diff --git a/src/NzbDrone.Core/NzbDrone.Core.csproj b/src/NzbDrone.Core/NzbDrone.Core.csproj index 6ac2bee76..4f2b4c982 100644 --- a/src/NzbDrone.Core/NzbDrone.Core.csproj +++ b/src/NzbDrone.Core/NzbDrone.Core.csproj @@ -575,13 +575,6 @@ - - - - - - -