mirror of
https://github.com/Readarr/Readarr
synced 2026-01-30 11:23:00 +01:00
Fixed: Parsing long downloading/seeding values from Transmission
(cherry picked from commit 8360dd7a7bab1dfb49a40aae382b47e9253d9fd1)
This commit is contained in:
parent
66e20a0aec
commit
9e6d1c581c
1 changed files with 2 additions and 2 deletions
|
|
@ -11,8 +11,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