Fixed incorrect case.

This commit is contained in:
Brendon Duncan 2018-06-29 08:13:13 +12:00
commit 9b20cb36fd

View file

@ -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.');