Merge pull request #4050 from bitpay/revert-4046-fix/RefactorPN

Revert "changing name of localstorage push notifications token value"
This commit is contained in:
Matias Alejo Garcia 2016-04-04 15:14:34 -03:00
commit f1ff334e3e
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('pushToken01', token, cb);
storage.set('pushToken', token, cb);
}
root.getDeviceToken = function(cb) {
storage.get('pushToken01', cb);
storage.get('pushToken', cb);
}
root.removeAddressbook = function(network, cb) {