Private GIT

Skip to content
Snippets Groups Projects
Commit 35580224 authored by flightlevel's avatar flightlevel
Browse files

Merge pull request #46 from flightlevel/BlueTigersTime

BlueTigers: GMT Time
parents bf508d17 b8bfa809
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@ namespace Jackett.Indexers
string stats = tRow.Find("div[id=kt" + torrentId.ToString() + "]").First().Text();
string sizeStr = new Regex("Taille:(.*)Vitesse:").Match(stats).Groups[1].ToString().Trim();
string pubDateStr = new Regex("Ajout.:(.*)Compl.t.s").Match(stats).Groups[1].ToString().Trim();
DateTime pubDate = DateTime.ParseExact(pubDateStr, "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture, DateTimeStyles.AssumeLocal);
DateTime pubDate = DateTime.ParseExact(pubDateStr, "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal).ToLocalTime();
string statistics = tRow.Find("a[href*=torrents-details.php?id=]").First().RenderSelection().Trim();
string startTag = "<table ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment