Skip to content

Commit af4dbe5

Browse files
authored
Edge to edge fix limited to brokered only scenarios, Fixes AB#3293334 (#2690)
The fix I did in this PR is flighted #2665 But we cannot control flighting when no broker is installed. I have checked with OneAuth team and they are ok with just turning this fix ON for brokered flow since that is the majority case. Fix : Simply limit the fix to brokered flow by setting the default flight value in common to false and in broker to true. See broker PR : AzureAD/ad-accounts-for-android#3130 Fixes [AB#3293334](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3293334)
1 parent 8691851 commit af4dbe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common4j/src/main/com/microsoft/identity/common/java/flighting/CommonFlight.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public enum CommonFlight implements IFlightConfig {
124124
/**
125125
* Flight to enable handling the UI in edge to edge mode
126126
*/
127-
ENABLE_HANDLING_FOR_EDGE_TO_EDGE("EnableHandlingEdgeToEdge", true),
127+
ENABLE_HANDLING_FOR_EDGE_TO_EDGE("EnableHandlingEdgeToEdge", false),
128128

129129
/**
130130
* Flight to enable the Web CP in WebView.

0 commit comments

Comments
 (0)