use detect language in push notifications, save remote preferences when creating a new profile

This commit is contained in:
Gabriel Bazán 2016-01-26 10:38:27 -03:00
commit 509047e2b0

View file

@ -1287,8 +1287,12 @@ angular.module('copayApp.controllers').controller('indexController', function($r
$rootScope.$on('Local/SubscribeNotifications', function(event) {
if (!self.usePushNotifications) return;
pushNotificationsService.enableNotifications();
self.updateRemotePreferences({
saveAll: true
}, function() {
$log.debug('Remote preferences saved');
pushNotificationsService.enableNotifications();
});
});