Skip to content

Commit 1d8d064

Browse files
committed
🐛 Fix isRunningLive always returning yes
2 parents 8988c05 + 96467f8 commit 1d8d064

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ios/RNInstabug/InstabugReactBridge.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,9 @@ - (dispatch_queue_t)methodQueue {
583583
if (isRunningTestFlightBeta || hasEmbeddedMobileProvision)
584584
{
585585
result = NO;
586+
} else {
587+
result = YES;
586588
}
587-
result = YES;
588589
#endif
589590
callback(@[[NSNumber numberWithBool:result]]);
590591
}

0 commit comments

Comments
 (0)