Skip to content

Commit

Permalink
only call end() if conversation is not transient
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaynberg authored and pmuir committed Oct 31, 2010
1 parent 4f93e20 commit 1dce43c
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -304,7 +304,9 @@ public void invalidate()
{
if (isExpired(conversation))
{
conversation.end();
if (!conversation.isTransient()) {
conversation.end();
}
}
}
}
Expand Down

0 comments on commit 1dce43c

Please sign in to comment.