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 "message": content.plain.body
} }
}; };
opts.ios = { opts.ios = {
"alert": content.plain.body, "alert": content.plain.body,
"sound": "" "sound": "default"
}; };
return next(err, opts); return next(err, opts);
}, next); }, next);

Loading…
Cancel
Save