pull/7/head
Niels Andriesse 7 years ago
parent 57084e7e99
commit 3bd3341e64

@ -394,7 +394,6 @@ NS_ASSUME_NONNULL_BEGIN
BOOL hasSearchText = self.searchText.length > 0; BOOL hasSearchText = self.searchText.length > 0;
if (hasSearchText) { if (hasSearchText) {
// Loki: // Loki:
// ======== // ========
OWSTableSection *newConversationSection = [OWSTableSection new]; OWSTableSection *newConversationSection = [OWSTableSection new];
@ -410,7 +409,6 @@ NS_ASSUME_NONNULL_BEGIN
}]]; }]];
[contents addSection:newConversationSection]; [contents addSection:newConversationSection];
// ======== // ========
for (OWSTableSection *section in [self contactsSectionsForSearch]) { for (OWSTableSection *section in [self contactsSectionsForSearch]) {
[contents addSection:section]; [contents addSection:section];
} }

@ -1,3 +1,4 @@
final class OnboardingKeyPairViewController : OnboardingBaseViewController { final class OnboardingKeyPairViewController : OnboardingBaseViewController {
private var mode: Mode = .register { didSet { if mode != oldValue { handleModeChanged() } } } private var mode: Mode = .register { didSet { if mode != oldValue { handleModeChanged() } } }
private var keyPair: ECKeyPair! { didSet { updateMnemonic() } } private var keyPair: ECKeyPair! { didSet { updateMnemonic() } }

@ -232,7 +232,6 @@ public class SystemContactsFetcher: NSObject {
switch authorizationStatus { switch authorizationStatus {
case .notDetermined: case .notDetermined:
return completion(nil) return completion(nil)
// Loki: Original code // Loki: Original code
// ======== // ========
// if CurrentAppContext().isInBackground() { // if CurrentAppContext().isInBackground() {

Loading…
Cancel
Save