mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-15 21:14:32 +01:00
parent
0dbd23c52b
commit
2bae37d0c5
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
var torrentId = row.fid.ToString();
|
||||
var details = new Uri(_settings.BaseUrl + "torrent/" + torrentId);
|
||||
var link = new Uri(_settings.BaseUrl + "download/" + torrentId + "/" + row.filename);
|
||||
var publishDate = DateTime.ParseExact(row.addedTimestamp.ToString(), "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);
|
||||
var publishDate = DateTime.ParseExact(row.addedTimestamp.ToString(), "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal);
|
||||
var seeders = (int)row.seeders;
|
||||
var leechers = (int)row.leechers;
|
||||
var grabs = (int)row.completed;
|
||||
|
|
|
|||
Loading…
Reference in a new issue