Merge pull request #449 from matiu/feat/sound

Feat/sound
This commit is contained in:
Matias Alejo Garcia 2016-01-20 23:18:23 -03:00
commit 7f423d1351
1 changed files with 2 additions and 1 deletions

View File

@ -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);