1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-10 17:49:38 +02:00

Fix jingle ft

This commit is contained in:
vanitasvitae 2017-06-05 00:27:03 +02:00
commit 3a4f758b6a
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
5 changed files with 41 additions and 9 deletions

View file

@ -78,6 +78,7 @@ public final class Jingle extends IQ {
else {
this.contents = Collections.emptyList();
}
setType(Type.set);
}
/**

View file

@ -46,7 +46,7 @@ public abstract class JingleContentDescription implements ExtensionElement {
return ELEMENT;
}
public List<JingleContentDescriptionChildElement> getJinglePayloadTypes() {
public List<JingleContentDescriptionChildElement> getJingleContentDescriptionChildren() {
return payloads;
}