Skip to content

Commit

Permalink
fix(auth): Dismiss custom tab on signout for all browsers (#3184)
Browse files Browse the repository at this point in the history
* Dismiss custom tab on signout for all browsers
  • Loading branch information
tylerjroach authored Feb 1, 2023
1 parent 86f1c55 commit 940d5c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ private void launchCustomTabs(final Uri uri, final Activity activity, final Stri
);
} else {
Intent startIntent = CustomTabsManagerActivity.createStartIntent(context, mCustomTabsIntent.intent);
startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_NO_HISTORY);
startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(startIntent);
}
} catch (final Exception e) {
Expand Down

0 comments on commit 940d5c7

Please sign in to comment.