Commit 47566b10 authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

Handle error responses from Clearspace during chat transcript-updates. To be reviewed by Gato.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10625 b35dd754-fafc-0310-a699-88a17e54d16e
parent b6368ff8
......@@ -181,8 +181,15 @@ public class ClearspaceMUCTranscriptManager implements MUCEventListener {
// Return early so that the room-events queue is not cleared.
return;
}
else if (result.getType() == IQ.Type.error) {
// Clearspace was not able to process the transcript-update
Log.warn("Clearspace received a transcript-update packet but was not able to process it.");
// We can clear the queue now.
// Return early so that the room-events queue is not cleared.
return;
}
// We can clear the queue now, as Clearspace has processed the transcript-update packet.
roomEvents.clear();
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment