#272 closed Bug (fixed)
Torrent.m :: update() function might be wrong
Reported by: | charles | Owned by: | livings124 |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Mac Client | Version: | 0.80 |
Severity: | Minor | Keywords: | |
Cc: |
Description
when building the status string, case TR_STATUS_SEED and TR_STATUS DONE looks like this:
case TR_STATUS_SEED: case TR_STATUS_DONE:
[statusString setString: @""]; if ([self totalPeersConnected] != 1)
[statusString appendFormat: NSLocalizedString(@"Seeding to %d of %d peers", "Torrent -> status string"),
[self peersSendingToUs], [self totalPeersConnected]];
else
[statusString appendFormat: NSLocalizedString(@"Seeding to %d of 1 peer", "Torrent -> status string"),
[self peersGettingFromUs]];
break;
I think the self peersSendingToUs' here should be self peersGettingFromUs'.
Change History (2)
comment:1 Changed 16 years ago by livings124
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
Fixed in [2507]