mirror of
https://github.com/transmission/transmission
synced 2025-02-03 21:12:05 +00:00
spec fix: timesCompleted is an int, not a double.
This commit is contained in:
parent
a248862bbc
commit
6059240cb2
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ addInfo( const tr_torrent * tor, tr_benc * d, uint64_t fields )
|
|||
tr_bencDictAddInt( d, "leechers", st->leechers );
|
||||
tr_bencDictAddInt( d, "peersKnown", st->peersKnown );
|
||||
tr_bencDictAddInt( d, "seeders", st->seeders );
|
||||
tr_bencDictAddDouble( d, "timesCompleted", st->timesCompleted );
|
||||
tr_bencDictAddInt( d, "timesCompleted", st->timesCompleted );
|
||||
}
|
||||
|
||||
if( fields & TR_RPC_TORRENT_FIELD_TRACKERS )
|
||||
|
|
Loading…
Reference in a new issue