So, code
function Onstage() {
sms = app.CreateSMS();
sms.SetOnMessage(sms_OnMessage);
}
function sms_OnMessage (number, message) {
app.ShowPopup(number + ': ' + message);
}
is crashed when sms with symbolic phone number comes. Any idea how to fix it?