From c7871b28d451dc3d0d9236d1b3bb5cdf7ad354c1 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Tue, 6 Mar 2018 23:00:56 -0500 Subject: [PATCH] Make sure any new call migration settings take effect on first launch // FREEBIE --- Signal/src/AppDelegate.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Signal/src/AppDelegate.m b/Signal/src/AppDelegate.m index 254dc626d..eac4230d9 100644 --- a/Signal/src/AppDelegate.m +++ b/Signal/src/AppDelegate.m @@ -1064,6 +1064,9 @@ static NSString *const kURLHostVerifyPrefix = @"verify"; // TODO: Once "app ready" logic is moved into AppSetup, move this line there. [[OWSProfileManager sharedManager] ensureLocalProfileCached]; + // Incase anything changed while migrations ran + [[SignalApp sharedApp].callService createCallUIAdapter]; + // Note that this does much more than set a flag; // it will also run all deferred blocks. [AppReadiness setAppIsReady];