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