always set backing key values

This commit is contained in:
Kyle Spearrin 2017-05-25 12:50:39 -04:00
parent ed5b6962d7
commit 7fd5209cdb
1 changed files with 3 additions and 2 deletions

View File

@ -65,9 +65,10 @@ namespace Bit.App.Services
{
PreviousKey = _key;
_secureStorage.Delete(KeyKey);
_key = null;
_legacyEtmKey = null;
}
_key = value;
_legacyEtmKey = null;
}
}