fixes token fetch when account provided and bumps version (#378)
Co-authored-by: ohad bitton <32278684+ohadbitt@users.noreply.github.com>
This commit is contained in:
Родитель
9ff0fb77b5
Коммит
7f825772b6
|
@ -93,7 +93,7 @@ public abstract class MsalTokenProviderBase extends CloudDependentTokenProviderB
|
|||
authorityUrl = firstPartyAuthorityUrl;
|
||||
}
|
||||
|
||||
return SilentParameters.builder(scopes).account(account).authorityUrl(authorityUrl).build();
|
||||
return SilentParameters.builder(scopes, account).authorityUrl(authorityUrl).build();
|
||||
}
|
||||
return SilentParameters.builder(scopes).authorityUrl(aadAuthorityUrl).build();
|
||||
}
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -32,7 +32,7 @@
|
|||
</developers>
|
||||
|
||||
<properties>
|
||||
<revision>5.1.1</revision> <!-- CHANGE THIS to adjust project version-->
|
||||
<revision>5.1.2</revision> <!-- CHANGE THIS to adjust project version-->
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<java.version>1.8</java.version>
|
||||
<azure-bom-version>1.2.25</azure-bom-version>
|
||||
|
|
Загрузка…
Ссылка в новой задаче