You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Load the authorization URL in a browser custom tab if required and do nothing otherwise as the view model will load it in the web view.
1109
-
// TODO: Coverage needed? ECJ20251210
1110
-
if ((singleServerCustomTabActivity || isBrowserLoginEnabled) &&!isUsingFrontDoorBridge /* UI front-door bridge bypasses the need for browser custom tab */) {
1110
+
// TODO: Coverage needed - This one is challenging. ECJ20251210
1111
+
// if (singleServerCustomTabActivity) {
1112
+
// Log.i("WSC", "A.1")
1113
+
// } else {
1114
+
// Log.i("WSC", "A.2")
1115
+
// }
1116
+
// if (isBrowserLoginEnabled) {
1117
+
// Log.i("WSC", "B.1")
1118
+
// } else {
1119
+
// Log.i("WSC", "B.2")
1120
+
// }
1121
+
//
1122
+
// if (!singleServerCustomTabActivity && isBrowserLoginEnabled) {
1123
+
// Log.i("WSC", "B.3 Right Side")
1124
+
// }
1125
+
1126
+
val useBrowserLogin = (singleServerCustomTabActivity || isBrowserLoginEnabled)
1127
+
1128
+
// if (isUsingFrontDoorBridge) {
1129
+
// Log.i("WSC", "C.1")
1130
+
// } else {
1131
+
// Log.i("WSC", "C.2")
1132
+
// }
1133
+
//
1134
+
// if (useBrowserLogin && isBrowserLoginEnabled) {
1135
+
// Log.i("WSC", "C.3 Right Side")
1136
+
// }
1137
+
1138
+
val useBrowserLoginGuardAgainstFrontDoorBridge = useBrowserLogin &&!isUsingFrontDoorBridge /* UI front-door bridge bypasses the need for browser custom tab */
0 commit comments