mirror of
https://github.com/zoriya/flood.git
synced 2026-06-01 10:35:59 +00:00
server: qBittorrent: treat ETA >= 8640000 as infinity
This commit is contained in:
@@ -243,7 +243,7 @@ class QBittorrentClientGatewayService extends ClientGatewayService {
|
||||
directory: info.save_path,
|
||||
downRate: info.dlspeed,
|
||||
downTotal: info.downloaded,
|
||||
eta: info.eta,
|
||||
eta: info.eta >= 8640000 ? -1 : info.eta,
|
||||
hash: info.hash,
|
||||
isMultiFile: false,
|
||||
isPrivate: false,
|
||||
|
||||
Reference in New Issue
Block a user