mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 14:51:01 +00:00
MoreThanTV: improve missing quality tag error
This commit is contained in:
parent
201703ecbc
commit
b8f5856bac
1 changed files with 2 additions and 2 deletions
|
@ -158,9 +158,9 @@ namespace Jackett.Common.Indexers
|
|||
// Parse required data
|
||||
var downloadAnchor = groupItem.QuerySelectorAll("td a").Last();
|
||||
var qualityData = downloadAnchor.InnerHtml.Split('/');
|
||||
|
||||
|
||||
if (qualityData.Length < 2)
|
||||
throw new Exception($"We expected 2 or more quality datas, instead we have {qualityData.Length}.");
|
||||
throw new Exception($"We expected 2 or more quality datas, instead we have {qualityData.Length} for {season}.");
|
||||
|
||||
// Build title
|
||||
var title = string.Join(".", new List<string>
|
||||
|
|
Loading…
Reference in a new issue