mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 23:00:51 +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
|
@ -160,7 +160,7 @@ namespace Jackett.Common.Indexers
|
|||
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