Clean up ahead of PR.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 93a587c896
commit fe0ddb53d2

@ -172,7 +172,7 @@
<objects> <objects>
<navigationController storyboardIdentifier="UserInitialViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="tuk-0x-yCb" customClass="SignalsNavigationController" sceneMemberID="viewController"> <navigationController storyboardIdentifier="UserInitialViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="tuk-0x-yCb" customClass="SignalsNavigationController" sceneMemberID="viewController">
<toolbarItems/> <toolbarItems/>
<navigationBar key="navigationBar" contentMode="scaleToFill" misplaced="YES" id="VNq-cN-pk9"> <navigationBar key="navigationBar" contentMode="scaleToFill" id="VNq-cN-pk9">
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/> <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
<autoresizingMask key="autoresizingMask"/> <autoresizingMask key="autoresizingMask"/>
<color key="barTintColor" red="0.082137122750282288" green="0.46843802928924561" blue="0.91112053394317627" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color key="barTintColor" red="0.082137122750282288" green="0.46843802928924561" blue="0.91112053394317627" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>

@ -416,10 +416,6 @@ typedef enum : NSUInteger {
[self initializeToolbars]; [self initializeToolbars];
[self createScrollDownButton]; [self createScrollDownButton];
dispatch_async(dispatch_get_main_queue(), ^{
[self showConversationSettings];
});
} }
- (void)registerCustomMessageNibs - (void)registerCustomMessageNibs

@ -710,11 +710,10 @@ NS_ASSUME_NONNULL_BEGIN
signedPreKeyId:0 signedPreKeyId:0
signedPreKeySignature:[self createRandomNSDataOfSize:16] signedPreKeySignature:[self createRandomNSDataOfSize:16]
identityKey:[self createRandomNSDataOfSize:16]]; identityKey:[self createRandomNSDataOfSize:16]];
// [result addObject:[TSInvalidIdentityKeySendingErrorMessage [result addObject:[TSInvalidIdentityKeySendingErrorMessage untrustedKeyWithOutgoingMessage:outgoingMessage
// untrustedKeyWithOutgoingMessage:outgoingMessage inThread:thread
// inThread:thread forRecipient:@"+19174054215"
// forRecipient:@"+19174054215" preKeyBundle:preKeyBundle]];
// preKeyBundle:preKeyBundle]];
} }
return result; return result;

@ -194,15 +194,6 @@ NS_ASSUME_NONNULL_BEGIN
} }
[self updateTableContents]; [self updateTableContents];
dispatch_async(dispatch_get_main_queue(), ^{
FingerprintViewController *fingerprintViewController = [FingerprintViewController new];
[fingerprintViewController configureWithRecipientId:self.thread.contactIdentifier];
fingerprintViewController.dismissDelegate = self;
UINavigationController *navigationController =
[[UINavigationController alloc] initWithRootViewController:fingerprintViewController];
[self presentViewController:navigationController animated:YES completion:nil];
});
} }
- (void)updateTableContents - (void)updateTableContents

@ -202,10 +202,6 @@ NSString *const SignalsViewControllerSegueShowIncomingCall = @"ShowIncomingCallS
object:nil]; object:nil];
[self updateBarButtonItems]; [self updateBarButtonItems];
dispatch_async(dispatch_get_main_queue(), ^{
[self tableView:nil didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
});
} }
- (void)updateBarButtonItems { - (void)updateBarButtonItems {

Loading…
Cancel
Save