Oops, fix 1.8 clients

This commit is contained in:
Myles 2016-03-19 22:04:17 +00:00
parent a8295c9de0
commit 1fbd561aec
1 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,9 @@ public class ViaDecodeHandler extends ByteToMessageDecoder {
throw (Exception) e.getCause();
}
} finally {
bytebuf.release();
if (info.isActive()) {
bytebuf.release();
}
}
}
}