mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 06:27:08 -04:00
Fixed: Parsing long downloading/seeding values from Transmission
Fixes #9987
This commit is contained in:
parent
7f03a916f1
commit
8b6cf34ce4
1 changed files with 2 additions and 2 deletions
|
@ -13,8 +13,8 @@ namespace NzbDrone.Core.Download.Clients.Transmission
|
|||
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…
Add table
Add a link
Reference in a new issue