diff --git a/Signal/src/view controllers/DebugUITableViewController.m b/Signal/src/view controllers/DebugUITableViewController.m index 17e3534c6..98fd07e85 100644 --- a/Signal/src/view controllers/DebugUITableViewController.m +++ b/Signal/src/view controllers/DebugUITableViewController.m @@ -25,7 +25,7 @@ NS_ASSUME_NONNULL_BEGIN @implementation OWSTableContents -(instancetype)init { - if (self = [self init]) { + if (self = [super init]) { _sections = [NSMutableArray new]; } return self; @@ -61,7 +61,7 @@ NS_ASSUME_NONNULL_BEGIN } -(instancetype)init { - if (self = [self init]) { + if (self = [super init]) { _items = [NSMutableArray new]; } return self;