This commit is contained in:
Matias Alejo Garcia 2015-04-24 18:06:04 -03:00
commit 6723cba56a
3 changed files with 4 additions and 12 deletions

View file

@ -61,7 +61,10 @@ angular.module('copayApp.services')
root.getProfile = function(cb) {
storage.get('profile', function(err, str) {
if (err || !str) return cb(err);
if (err || !str)
// Migrate ?
return cb(err);
decryptOnMobile(str, function(err, str) {
if (err) return cb(err);