Skip to content

Commit

Permalink
lostfilm: skip invalid torrents. resolves #9725 (#9742)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngosang committed Oct 4, 2020
1 parent fca2e06 commit 55c2853
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Jackett.Common/Indexers/LostFilm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,8 @@ private async Task<List<ReleaseInfo>> FetchSeriesReleases(string url, TorznabQue
}

var playButton = row.QuerySelector("td.zeta > div.external-btn");
if (playButton == null) // #9725
continue;

if (!string.IsNullOrEmpty(query.Episode))
{
Expand Down

0 comments on commit 55c2853

Please sign in to comment.