Merge pull request #4046 from gabrielbazan7/fix/RefactorPN

changing name of localstorage push notifications token value
This commit is contained in:
Matias Alejo Garcia 2016-04-04 09:37:42 -03:00
commit 753bfb91bd
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) {