Fixed incorrect case.
This commit is contained in:
parent
f4f2a84fbb
commit
9b20cb36fd
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@
|
||||||
function removeKeyIfExists() {
|
function removeKeyIfExists() {
|
||||||
secureStorageService.remove(storageKey, function onKeyRemoved(err){
|
secureStorageService.remove(storageKey, function onKeyRemoved(err){
|
||||||
if (err) {
|
if (err) {
|
||||||
$log.Error('Error removing key.', err);
|
$log.error('Error removing key.', err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$log.debug('Key removed.');
|
$log.debug('Key removed.');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue