mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-21 12:41:27 +02:00
Fixed: Parsing long downloading/seeding values from Transmission
This commit is contained in:
parent
7e8d8500f2
commit
8360dd7a7b
1 changed files with 2 additions and 2 deletions
|
|
@ -13,8 +13,8 @@ public class TransmissionTorrent
|
|||
public bool IsFinished { get; set; }
|
||||
public long Eta { get; set; }
|
||||
public TransmissionTorrentStatus Status { get; set; }
|
||||
public int SecondsDownloading { get; set; }
|
||||
public int SecondsSeeding { get; set; }
|
||||
public long SecondsDownloading { get; set; }
|
||||
public long SecondsSeeding { get; set; }
|
||||
public string ErrorString { get; set; }
|
||||
public long DownloadedEver { get; set; }
|
||||
public long UploadedEver { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue