Open tel or mail link twice on IOS

Hi everyone,
i’m using links with href=“tel:…” and href=“mailto:…”, it opens native application to call or write a mail, no problem this far !
I’m having a weird issue only on ios, when i go back from the native application to show my ionic page it’s like i click again on the same action and opens tel or mail again.

Here what are my actions:
ionic page => click on tel link => open default tel app => finish my call or send email => back on ionic page => open default tel app again automatically.

Have you ever heard about this ?

1 Like

I have just noticed the same thing. Did you figure this out?

Instead of link try click handler like the following, for me the timeout seems to work around that double issue

call() {
  setTimeout(()=>{
     window.open('tel:8005551212');
  },500);
}