Skip to content

Commit 4376dda

Browse files
committed
New fix attempt
2 parents 82d496a + 81bec09 commit 4376dda

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ios/CDVWKInAppBrowser.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ - (void)openInInAppBrowser:(NSURL*)url withOptions:(NSString*)options
280280
_waitForBeforeload = ![_beforeload isEqualToString:@""];
281281

282282
[self.inAppBrowserViewController navigateTo:url];
283-
[self show:nil withNoAnimate:browserOptions.hidden];
283+
if (!browserOptions.hidden) {
284+
[self show:nil withNoAnimate:browserOptions.hidden];
285+
}
284286
}
285287

286288
- (void)show:(CDVInvokedUrlCommand*)command{

0 commit comments

Comments
 (0)