diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index 993e5cd90..6876127bb 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -1719,8 +1719,9 @@ typedef enum id item = [fTrackers objectAtIndex: i]; if ([item isKindOfClass: [NSNumber class]]) { - for (NSInteger j = i+1; j < [fTrackers count] && ![[fTrackers objectAtIndex: j] isKindOfClass: [NSNumber class]]; ++j, ++i) - [addresses addObject: [fTrackers objectAtIndex: j]]; + ++i; + for (NSInteger j = i; j < [fTrackers count] && ![[fTrackers objectAtIndex: j] isKindOfClass: [NSNumber class]]; ++j, ++i) + [addresses addObject: [[fTrackers objectAtIndex: j] fullAnnounceAddress]]; --i; } else