1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 16:44:48 +02:00

Fix the Jingle IQ action attribute in jingle-old

This commit is contained in:
Matteo Campana 2018-03-14 16:40:14 +01:00 committed by Florian Schmaus
parent 3a264777bd
commit 713f0438df

View file

@ -354,7 +354,7 @@ public class Jingle extends IQ {
buf.append(" responder=\"").append(getResponder()).append('"'); buf.append(" responder=\"").append(getResponder()).append('"');
} }
if (getAction() != null) { if (getAction() != null) {
buf.append(" action=\"").append(getAction().name()).append('"'); buf.append(" action=\"").append(getAction().toString()).append('"');
} }
if (getSid() != null) { if (getSid() != null) {
buf.append(" sid=\"").append(getSid()).append('"'); buf.append(" sid=\"").append(getSid()).append('"');