1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-11 06:32:59 +00:00

Added parentheses.

This commit is contained in:
Mitchell Livingston 2006-06-16 17:33:16 +00:00
parent d203555d84
commit e5e903a921

View file

@ -136,9 +136,9 @@
fStat = tr_torrentStat( fHandle );
if ([self isSeeding]
&& (fStopRatioSetting == RATIO_CHECK && [self ratio] >= fRatioLimit)
&& ((fStopRatioSetting == RATIO_CHECK && [self ratio] >= fRatioLimit)
|| (fStopRatioSetting == RATIO_GLOBAL && [fDefaults boolForKey: @"RatioCheck"]
&& [self ratio] >= [fDefaults floatForKey: @"RatioLimit"]))
&& [self ratio] >= [fDefaults floatForKey: @"RatioLimit"])))
{
[self stop];
[self setStopRatioSetting: RATIO_NO_CHECK];