Play audible alert for missed call

// FREEBIE
pull/1/head
Michael Kirk 8 years ago
parent 1d6ab00647
commit 9b1695f28c

@ -96,6 +96,9 @@
PushManagerUserInfoKeysCallBackSignalRecipientId : call.remotePhoneNumber
};
if ([self shouldPlaySoundForNotification]) {
notification.soundName = @"NewMessage.aifc";
}
NSString *alertMessage;
switch (self.notificationPreviewType) {
@ -132,6 +135,9 @@
PushManagerUserInfoKeysCallBackSignalRecipientId : call.remotePhoneNumber,
Signal_Thread_UserInfo_Key : thread.uniqueId
};
if ([self shouldPlaySoundForNotification]) {
notification.soundName = @"NewMessage.aifc";
}
NSString *alertMessage;
switch (self.notificationPreviewType) {
@ -169,6 +175,9 @@
PushManagerUserInfoKeysCallBackSignalRecipientId : call.remotePhoneNumber,
Signal_Thread_UserInfo_Key : thread.uniqueId
};
if ([self shouldPlaySoundForNotification]) {
notification.soundName = @"NewMessage.aifc";
}
NSString *alertMessage;
switch (self.notificationPreviewType) {

Loading…
Cancel
Save