From 7cdd146202ad8f6a2b2304e7cfba19a7d7e06fd9 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO Date: Mon, 13 Jan 2020 13:51:51 +1100 Subject: [PATCH] Enable/Debug group editing viewcontrollers --- SignalMessaging/Views/ContactsViewHelper.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SignalMessaging/Views/ContactsViewHelper.m b/SignalMessaging/Views/ContactsViewHelper.m index 9767fa9ff..be7b8cdf7 100644 --- a/SignalMessaging/Views/ContactsViewHelper.m +++ b/SignalMessaging/Views/ContactsViewHelper.m @@ -60,7 +60,7 @@ NS_ASSUME_NONNULL_BEGIN _profileManager = [OWSProfileManager sharedManager]; // We don't want to notify the delegate in the `updateContacts`. - self.shouldNotifyDelegateOfUpdatedContacts = YES; +// self.shouldNotifyDelegateOfUpdatedContacts = YES; [self updateContacts]; self.shouldNotifyDelegateOfUpdatedContacts = NO; @@ -189,6 +189,7 @@ NS_ASSUME_NONNULL_BEGIN // Don't fire delegate "change" events during initialization. if (self.shouldNotifyDelegateOfUpdatedContacts) { + OWSLogInfo(@"Fire delegate update function"); [self.delegate contactsViewHelperDidUpdateContacts]; self.hasUpdatedContactsAtLeastOnce = YES; }