From 5f20d32b4152e0a0be390285bc6b7218e3c645a9 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 31 Jan 2018 15:38:30 -0500 Subject: [PATCH] Fix SAE readiness. --- SignalShareExtension/ShareViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SignalShareExtension/ShareViewController.swift b/SignalShareExtension/ShareViewController.swift index 98ee93a15..eadbe8cf6 100644 --- a/SignalShareExtension/ShareViewController.swift +++ b/SignalShareExtension/ShareViewController.swift @@ -222,7 +222,7 @@ public class ShareViewController: UINavigationController, ShareViewDelegate, SAE guard OWSStorage.isStorageReady() else { return } - guard AppReadiness.isAppReady() else { + guard !AppReadiness.isAppReady() else { // Only mark the app as ready once. return }