mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
fix state comparison (value vs instance) (#1063)
This commit is contained in:
parent
5e680531da
commit
f68db90b1f
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ namespace Bit.iOS.Core.Services
|
||||||
{
|
{
|
||||||
var state = GetState();
|
var state = GetState();
|
||||||
|
|
||||||
return FromBase64(oldState) == state;
|
return FromBase64(oldState).Equals(state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue