1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-10 06:03:09 +00:00

bithdtv: replace dot with space in titles #10097

This commit is contained in:
Garfield69 2022-06-20 19:49:38 +12:00
parent b1ff645c37
commit c710da3dbe

View file

@ -132,7 +132,7 @@ namespace Jackett.Common.Indexers
var qLink = row.Children[2].QuerySelector("a");
release.MinimumRatio = 1;
release.MinimumSeedTime = 172800; // 48 hours
release.Title = qLink.GetAttribute("title");
release.Title = qLink.GetAttribute("title").Replace('.', ' ');
var detailsLink = new Uri(qLink.GetAttribute("href"));
//Skip irrelevant and duplicate entries
if (!query.MatchQueryStringAND(release.Title) || releases.Any(r => r.Guid == detailsLink))