1
0
Fork 0
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:
Charles Kerr 2008-07-07 06:06:00 +00:00
parent a248862bbc
commit 6059240cb2

View file

@ -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 )