mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Fix the Jingle IQ action attribute in jingle-old
This commit is contained in:
parent
3a264777bd
commit
713f0438df
1 changed files with 1 additions and 1 deletions
|
@ -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('"');
|
||||||
|
|
Loading…
Reference in a new issue