[#986] DefaultChannelHandlerContext.fireUserEventTriggered(...) uses correct ChannelHandlerContext now

This commit is contained in:
Norman Maurer 2013-01-26 16:47:00 +01:00
parent cc278d45c2
commit a27d1cc365

View File

@ -1028,7 +1028,7 @@ final class DefaultChannelHandlerContext extends DefaultAttributeMap implements
private void invokeUserEventTriggered(Object event) {
try {
handler().userEventTriggered(next, event);
handler().userEventTriggered(this, event);
} catch (Throwable t) {
pipeline.notifyHandlerException(t);
}