diff --git a/Crashlytics/Crashlytics.framework/Versions/A/Crashlytics b/Crashlytics/Crashlytics.framework/Versions/A/Crashlytics index 9bb2540a..448e9bb8 100644 Binary files a/Crashlytics/Crashlytics.framework/Versions/A/Crashlytics and b/Crashlytics/Crashlytics.framework/Versions/A/Crashlytics differ diff --git a/Crashlytics/Crashlytics.framework/Versions/A/Resources/Info.plist b/Crashlytics/Crashlytics.framework/Versions/A/Resources/Info.plist index 7038c24d..ae71aa70 100644 --- a/Crashlytics/Crashlytics.framework/Versions/A/Resources/Info.plist +++ b/Crashlytics/Crashlytics.framework/Versions/A/Resources/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.1.2 + 1.1.3 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,7 +25,7 @@ iPhoneOS CFBundleVersion - 0101.02.00 + 0101.03.00 CrashlyticsAPIKey 0d10c90776f5ef5acd01ddbeaca9a6cba4814560 DTCompiler diff --git a/MasterPassword/iOS/MPTypeViewController.m b/MasterPassword/iOS/MPTypeViewController.m index 9c23831d..4db1cb87 100644 --- a/MasterPassword/iOS/MPTypeViewController.m +++ b/MasterPassword/iOS/MPTypeViewController.m @@ -79,7 +79,12 @@ assert(self.navigationController.topViewController == self); - [delegate didSelectType:[self typeAtIndexPath:indexPath]]; + MPElementType type = [self typeAtIndexPath:indexPath]; + if (type == NSNotFound) + // Selected a non-type row. + return; + + [delegate didSelectType:type]; [self.navigationController popViewControllerAnimated:YES]; }