Try to register more aggressively when dialing a URI on startup

fix-message-formatting
Daniel Pocock 11 years ago
parent 7b97fb294b
commit 9f1444c2b5

@ -310,6 +310,16 @@ public void handleUri(String uri)
try
{
// In case we have just started, try to start registration
new ProtocolRegistrationThread(uri, provider).start();
try
{
Thread.sleep(1000);
}
catch(InterruptedException ex)
{
// ignore
}
telephonyOpSet.createCall(uri);
}
catch (OperationFailedException exc)

Loading…
Cancel
Save