1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-23 23:00:51 +00:00

RevolutionTT : Remove comments redirect. resolves #6044 (#6328)

This commit is contained in:
ERR1R 2019-11-10 18:20:36 +01:00 committed by garfield69
parent 9aed735325
commit 9f3abf52e0

View file

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
@ -336,7 +336,7 @@ namespace Jackett.Common.Indexers
CQ qLink = qRow.Find(".br_right > a").First();
release.Guid = new Uri(SiteLink + qLink.Attr("href"));
release.Comments = new Uri(SiteLink + qLink.Attr("href") + "&tocomm=1");
release.Comments = new Uri(SiteLink + qLink.Attr("href"));
release.Title = qLink.Find("b").Text();
release.Description = release.Title;