Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ vNext
- [MINOR] Awaiting MFA Delegate now automatically returns the AuthMethods to be used when calling MFA Challenge (#2764)
- [MINOR] SDK now handles SMS as strong authentication method #2766
- [MINOR] Added error handling when webcp redirects have browser protocol #2767
- [PATCH] Fix for app link redirect from CCT due to forced browser preference (#2775)

Version 22.1.0
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ class SwitchBrowserActivity : FragmentActivity() {
} else {
Logger.warn(methodTag, "CustomTabsService is NOT supported")
browserIntent = Intent(Intent.ACTION_VIEW)
browserIntent.setPackage(browserPackageName)
}
browserIntent.setPackage(browserPackageName)
browserIntent.setData(processUri.toUri())
startActivity(browserIntent)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public synchronized boolean bind(final @Nullable Context context, @NonNull Strin
final CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(createSession(null));
builder.setSendToExternalDefaultHandlerEnabled(true);
mCustomTabsIntent = builder.setShowTitle(true).build();
mCustomTabsIntent.intent.setPackage(browserPackage);
return true;
}

Expand Down