Browse Source

Update notification.js

Fix remove non ascii char from msg
pull/211/head
Alexandre Gagner 3 years ago
parent
commit
eb34dc6cc2
  1. 3
      server/notification.js

3
server/notification.js

@ -208,7 +208,8 @@ class Notification {
"phone_number": notification.octopushPhoneNumber
}
],
"text": msg,
//octopush not supporting non ascii char
"text": msg.replace(/[^\x00-\x7F]/g, ""),
"type": notification.octopushSMSType,
"purpose": "alert",
"sender": notification.octopushSenderName

Loading…
Cancel
Save