OpenURL telephone number containing * -- broken in iOS v15.4.0 #13368
-
I am using Titanium SDK 10.1.1.GA. It still works for numbers without a When tracking down the code path for
I also saw that in the Apple URL scheme Reference it specifically says that My issue/question is -- is there any functionality that could be added to the titanium iOS library or a way I can use hyperloop to be able to use telephone numbers prefixed with |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Maybe something like this could work
On the other hand, this bug must be fixed in one of the next versions. Thanks for reporting |
Beta Was this translation helpful? Give feedback.
-
Hi there! Do you have an example phone number to test with? And I assume you did test on a physical device? The correct Hyperloop code for the above would be this one btw: UIApplication.sharedApplication.openURL('tel:' + phone); But lets fix it natively! UPDATE: It seems like a known iOS issue, see this thread for details. |
Beta Was this translation helpful? Give feedback.
-
@efeder-amd Just dropping in here for a second to say EXCELLENT work on your bug report here. This is one of the better ones I've seen on Github. |
Beta Was this translation helpful? Give feedback.
-
Latest update -- I've opened both a Technical Support Incident and submitted the bug via Feedback Assistant. |
Beta Was this translation helpful? Give feedback.
Latest update -- I've opened both a Technical Support Incident and submitted the bug via Feedback Assistant.
From the TSI I got the response:
"Our engineers have reviewed your request and have determined that you are experiencing a known issue for which there is no known workaround at this time."
Knowing that there was no native option, my team ended up using Twilio to route the call and spoof the callback number (which is an added cost to us versus the user's phone company doing that, but a necessary app requirement).