From 79df67ec4a512101a836488c52c92d2cec92625f Mon Sep 17 00:00:00 2001 From: Stephan Diederich Date: Fri, 6 Sep 2013 18:03:04 +0200 Subject: [PATCH] disable authenticator when running the appStore version --- Classes/BITAuthenticator.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Classes/BITAuthenticator.m b/Classes/BITAuthenticator.m index 69722f93a4..c4720e48c7 100644 --- a/Classes/BITAuthenticator.m +++ b/Classes/BITAuthenticator.m @@ -36,6 +36,9 @@ static NSString* const kBITAuthenticatorLastAuthenticatedVersionKey = @"BITAuthe #pragma mark - BITHockeyBaseManager overrides - (void)startManager { + //disabled in the appStore + if([self isAppStoreEnvironment]) return; + [self registerObservers]; switch (self.validationType) {