changing name of localstorage push notifications token value

This commit is contained in:
Gabriel Bazán 2016-04-01 16:32:40 -04:00
parent d03be3780a
commit 47731a7a2c
1 changed files with 2 additions and 2 deletions

View File

@ -232,11 +232,11 @@ angular.module('copayApp.services')
};
root.setDeviceToken = function(token, cb) {
storage.set('pushToken', token, cb);
storage.set('pushToken01', token, cb);
}
root.getDeviceToken = function(cb) {
storage.get('pushToken', cb);
storage.get('pushToken01', cb);
}
root.removeAddressbook = function(network, cb) {