Closed GoogleCodeExporter closed 9 years ago
OK, it happens because the "End user confirmation URI" parameter is not set. I
guess this has to be somehow made clear that in this situation the UAC cannot
really handle the end user confirmation request...
Original comment by ngrigor...@gmail.com
on 5 Jun 2012 at 5:52
Yes it's because the URI parameter is not well provisionned
Nevretheless I think we should add a protection against this problem
Original comment by jmauffret@gmail.com
on 5 Jun 2012 at 5:56
Corrected in next release.
We just add a protection against empty string
private boolean sendSipMessage(String remote, ...) {
if ((remote == null) || (remote.length() == 0)) {
...
return false;
}
Original comment by jmauffret@gmail.com
on 7 Jun 2012 at 7:01
Original issue reported on code.google.com by
ngrigor...@gmail.com
on 5 Jun 2012 at 5:38Attachments: