show reason in error message
This commit is contained in:
parent
01fc78d2a5
commit
6155938623
|
@ -232,7 +232,12 @@ public class JingleConnection implements Transferable {
|
|||
} else if (reason.hasChild("success")) {
|
||||
this.receiveSuccess();
|
||||
} else {
|
||||
this.fail(reason.getName());
|
||||
final List<Element> children = reason.getChildren();
|
||||
if (children.size() == 1) {
|
||||
this.fail(children.get(0).getName());
|
||||
} else {
|
||||
this.fail();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.fail();
|
||||
|
|
Loading…
Reference in a new issue