add TODO comments wrt to missing <retract/> parsing
This commit is contained in:
parent
78901e3339
commit
72e268e6b1
|
@ -265,6 +265,7 @@ public class JingleConnectionManager extends AbstractConnectionManager {
|
|||
return;
|
||||
}
|
||||
}
|
||||
//TODO handle reject for cases where we don’t have carbon copies (normally reject is to be sent to own bare jid as well)
|
||||
Log.d(Config.LOGTAG, account.getJid().asBareJid() + ": ignore jingle message from self");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -668,6 +668,7 @@ public class JingleRtpConnection extends AbstractJingleConnection implements Web
|
|||
Log.d(Config.LOGTAG, "ignoring retract because already in " + this.state);
|
||||
}
|
||||
} else {
|
||||
//TODO parse retract from self
|
||||
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": received retract from " + from + ". expected retract from" + id.with + ". ignoring");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue