Force select Outlook OAuth account

This commit is contained in:
M66B 2020-05-10 09:26:36 +02:00
parent 2f72e47d37
commit 866a0b81db
1 changed files with 3 additions and 0 deletions

View File

@ -282,6 +282,9 @@ public class FragmentOAuth extends FragmentBase {
if ("gmail".equals(provider.id))
authRequestBuilder.setPrompt("consent");
if ("outlook".equals(provider.id))
authRequestBuilder.setPrompt("select_account");
AuthorizationRequest authRequest = authRequestBuilder.build();
Log.i("OAuth request provider=" + provider.id);