Clean up ahead of PR.

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

@ -172,7 +172,7 @@
<objects>
<navigationController storyboardIdentifier="UserInitialViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="tuk-0x-yCb" customClass="SignalsNavigationController" sceneMemberID="viewController">
<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"/>
<autoresizingMask key="autoresizingMask"/>
<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 createScrollDownButton];
dispatch_async(dispatch_get_main_queue(), ^{
[self showConversationSettings];
});
}
- (void)registerCustomMessageNibs

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

@ -194,15 +194,6 @@ NS_ASSUME_NONNULL_BEGIN
}
[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

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

Loading…
Cancel
Save