Browse Source

Merge pull request #449 from matiu/feat/sound

Feat/sound
activeAddress
Matias Alejo Garcia 9 years ago
parent
commit
7f423d1351
  1. 3
      lib/pushnotificationsservice.js

3
lib/pushnotificationsservice.js

@ -125,9 +125,10 @@ PushNotificationsService.prototype._sendPushNotifications = function(notificatio
"message": content.plain.body
}
};
opts.ios = {
"alert": content.plain.body,
"sound": ""
"sound": "default"
};
return next(err, opts);
}, next);

Loading…
Cancel
Save