From 7c9c4668fe53f8437c6edb18bfbf5d261cc79f49 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 29 Mar 2017 16:55:56 -0400 Subject: [PATCH] Fix typo that causes crash. // FREEBIE --- Signal/src/view controllers/DebugUITableViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;