From dabaa0ae1c68bda1d8ae51ab7b9c96270d47dabf Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Fri, 11 Aug 2017 10:10:11 +0300 Subject: [PATCH] init Instabug & fix TestFairy check [iOS] --- ios/StatusIm/AppDelegate.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/StatusIm/AppDelegate.m b/ios/StatusIm/AppDelegate.m index 428b84dceb..7e895c3448 100644 --- a/ios/StatusIm/AppDelegate.m +++ b/ios/StatusIm/AppDelegate.m @@ -39,10 +39,10 @@ [self.window makeKeyAndVisible]; [SplashScreen show]; NSString *testfairyEnabled = [ReactNativeConfig envFor:@"TESTFAIRY_ENABLED"]; - if([testfairyEnabled isEqualToString:@"q"]){ + if([testfairyEnabled isEqualToString:@"1"]){ [TestFairy begin:@"969f6c921cb435cea1d41d1ea3f5b247d6026d55"]; - //[Instabug startWithToken:@"5534212f4a44f477c9ab270ab5cd2062" invocationEvent:IBGInvocationEventShake]; } + [Instabug startWithToken:@"5534212f4a44f477c9ab270ab5cd2062" invocationEvent:IBGInvocationEventShake]; return YES; }