mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
Fix for missing token when checking for key connector migration (#1861)
This commit is contained in:
parent
4bd06d2393
commit
0796bf17ce
1 changed files with 4 additions and 0 deletions
|
@ -209,6 +209,10 @@ namespace Bit.Core.Services
|
||||||
{
|
{
|
||||||
await GetTokenAsync();
|
await GetTokenAsync();
|
||||||
}
|
}
|
||||||
|
if (_accessTokenForDecoding == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
var decoded = DecodeToken();
|
var decoded = DecodeToken();
|
||||||
if (decoded?["amr"] == null)
|
if (decoded?["amr"] == null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue