mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 15:42:48 +00:00
Fix BitMeTv Release Link
Patch BitMeTV very poor SSL implementation. Fixes issue https://github.com/zone117x/Jackett/issues/220
This commit is contained in:
parent
bb7fb1ec37
commit
9276be829e
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ namespace Jackett.Indexers
|
|||
var date = DateTime.ParseExact(formattedTimeString, "dddd MMMM d yyyy hh:mm:ss tt", CultureInfo.InvariantCulture);
|
||||
release.PublishDate = DateTime.SpecifyKind(date, DateTimeKind.Utc).ToLocalTime();
|
||||
|
||||
release.Link = new Uri(SiteLink + "/" + row.ChildElements.ElementAt(2).Cq().Children("a.index").Attr("href"));
|
||||
release.Link = new Uri(SiteLink.Replace("http:", "https:") + "/" + row.ChildElements.ElementAt(2).Cq().Children("a.index").Attr("href"));
|
||||
|
||||
var sizeStr = row.ChildElements.ElementAt(6).Cq().Text();
|
||||
release.Size = ReleaseInfo.GetBytes(sizeStr);
|
||||
|
|
Loading…
Reference in a new issue