We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2c1ae commit baa2d51Copy full SHA for baa2d51
auth/src/main/java/com/firebase/ui/auth/provider/ProviderUtils.java
@@ -68,7 +68,7 @@ public String then(@NonNull Task<ProviderQueryResult> task) throws Exception {
68
69
List<String> providers = task.getResult().getProviders();
70
return providers == null || providers.isEmpty()
71
- ? null : providers.get(0);
+ ? null : providers.get(providers.size() - 1);
72
}
73
});
74
0 commit comments