From 4942d429f0069191c268513398e83e1f430f36c4 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Tue, 2 Jan 2018 21:05:26 +0100 Subject: [PATCH] RevolutionTT: use normal details link --- src/Jackett.Common/Indexers/RevolutionTT.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/RevolutionTT.cs b/src/Jackett.Common/Indexers/RevolutionTT.cs index 29090751d..fef49b7ad 100644 --- a/src/Jackett.Common/Indexers/RevolutionTT.cs +++ b/src/Jackett.Common/Indexers/RevolutionTT.cs @@ -273,7 +273,7 @@ namespace Jackett.Indexers Title = title, Description = title, Guid = new Uri(string.Format(DetailsURL, torrentId)), - Comments = new Uri(string.Format(DetailsURL, torrentId) + "&tocomm=1"), + Comments = new Uri(string.Format(DetailsURL, torrentId)), PublishDate = DateTime.ParseExact(infoMatch.Groups["added"].Value, "yyyy-MM-dd H:mm:ss", CultureInfo.InvariantCulture), //2015-08-08 21:20:31 Link = new Uri(link), Seeders = ParseUtil.CoerceInt(infoMatch.Groups["seeders"].Value == "no" ? "0" : infoMatch.Groups["seeders"].Value),