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:
parent
b1ff645c37
commit
c710da3dbe
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue