nicklockwood / iVersion

[DEPRECATED]
http://www.charcoaldesign.co.uk/source/cocoa#iversion
Other
1.95k stars 292 forks source link

Fixed a problem with NSMutableDictionary handling #40

Closed curtisdf closed 11 years ago

curtisdf commented 11 years ago

I found a bug when iVersion removes future versions of the app from the release notes plist. At least on iOS (maybe OSX too?), an NSMutableDictionary can't be modified while being enumerated. I rewrote the loop so that it creates a new NSMutableDictionary and copies the needed data over from the existing dictionary instead.

Thanks, Curtis

curtisdf commented 11 years ago

Thanks Nick!