From 5acb3714e9a6acb49c1194dfe8b8ea7e7a1ba0cc Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 28 Jul 2017 11:17:25 -0400 Subject: [PATCH] Add debug UI to enable manual censorship circumvention. // FREEBIE --- Signal/src/ViewControllers/DebugUI/DebugUITableViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Signal/src/ViewControllers/DebugUI/DebugUITableViewController.m b/Signal/src/ViewControllers/DebugUI/DebugUITableViewController.m index df63e909c..913a186ca 100644 --- a/Signal/src/ViewControllers/DebugUI/DebugUITableViewController.m +++ b/Signal/src/ViewControllers/DebugUI/DebugUITableViewController.m @@ -180,6 +180,7 @@ NS_ASSUME_NONNULL_BEGIN [subsectionItems addObject:[self itemForSubsection:[DebugUIContacts new] viewController:viewController thread:nil]]; [subsectionItems addObject:[self itemForSubsection:[DebugUIDiskUsage new] viewController:viewController thread:nil]]; + [subsectionItems addObject:[self itemForSubsection:[DebugUIMisc new] viewController:viewController thread:nil]]; [contents addSection:[OWSTableSection sectionWithTitle:@"Sections" items:subsectionItems]]; viewController.contents = contents;