diff --git a/Signal/src/ViewControllers/ThreadSettings/OWSConversationSettingsViewController.m b/Signal/src/ViewControllers/ThreadSettings/OWSConversationSettingsViewController.m index 6f3ca33504..7d7d4fa14f 100644 --- a/Signal/src/ViewControllers/ThreadSettings/OWSConversationSettingsViewController.m +++ b/Signal/src/ViewControllers/ThreadSettings/OWSConversationSettingsViewController.m @@ -707,9 +707,11 @@ const CGFloat kIconViewLength = 24; ]]; } - [contents addSection:[OWSTableSection sectionWithTitle:NSLocalizedString(@"GROUP_MANAGEMENT_SECTION", - @"Conversation settings table section title") - items:groupItems]]; + if (groupItems.count > 0) { + [contents addSection:[OWSTableSection sectionWithTitle:NSLocalizedString(@"GROUP_MANAGEMENT_SECTION", + @"Conversation settings table section title") + items:groupItems]]; + } } // Mute thread section.