From ea2f93da8450e35c751eddc66d92613aebc939f6 Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Mon, 11 Nov 2019 14:38:02 +1100 Subject: [PATCH] Fix broken selector --- Signal/src/AppDelegate.m | 2 +- Signal/src/ViewControllers/HomeView/HomeViewController.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/AppDelegate.m b/Signal/src/AppDelegate.m index abe7bbd77..34fe0eec2 100644 --- a/Signal/src/AppDelegate.m +++ b/Signal/src/AppDelegate.m @@ -874,7 +874,7 @@ static NSTimeInterval launchStartedAt; return; } - [SignalApp.sharedApp.homeViewController showNewConversationView]; + [SignalApp.sharedApp.homeViewController showNewConversationVC]; completionHandler(YES); }]; diff --git a/Signal/src/ViewControllers/HomeView/HomeViewController.h b/Signal/src/ViewControllers/HomeView/HomeViewController.h index 26396befd..2e4f3185f 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewController.h +++ b/Signal/src/ViewControllers/HomeView/HomeViewController.h @@ -20,7 +20,7 @@ NS_ASSUME_NONNULL_BEGIN animated:(BOOL)isAnimated; // Used by force-touch Springboard icon shortcut -- (void)showNewConversationView; +- (void)showNewConversationVC; @end