fix cancelled p2p ft showing up as such
This commit is contained in:
parent
c6289c442d
commit
13a879841f
|
@ -1243,6 +1243,10 @@ public class JingleFileTransferConnection extends AbstractJingleConnection
|
||||||
if (transition(target)) {
|
if (transition(target)) {
|
||||||
// we change state before terminating transport so we don't consume the following
|
// we change state before terminating transport so we don't consume the following
|
||||||
// IOException and turn it into a connectivity error
|
// IOException and turn it into a connectivity error
|
||||||
|
|
||||||
|
if (isInitiator() && reason == Reason.CANCEL) {
|
||||||
|
this.message.setErrorMessage(Message.ERROR_MESSAGE_CANCELLED);
|
||||||
|
}
|
||||||
terminateTransport();
|
terminateTransport();
|
||||||
final JinglePacket jinglePacket =
|
final JinglePacket jinglePacket =
|
||||||
new JinglePacket(JinglePacket.Action.SESSION_TERMINATE, id.sessionId);
|
new JinglePacket(JinglePacket.Action.SESSION_TERMINATE, id.sessionId);
|
||||||
|
|
Loading…
Reference in a new issue