mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
fix state comparison (value vs instance) (#1063)
This commit is contained in:
@@ -36,7 +36,7 @@ namespace Bit.iOS.Core.Services
|
||||
{
|
||||
var state = GetState();
|
||||
|
||||
return FromBase64(oldState) == state;
|
||||
return FromBase64(oldState).Equals(state);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user