From 15ef1fb1ef7ade19d3d13abc4699378821ca9e1e Mon Sep 17 00:00:00 2001 From: Graham Clark Date: Wed, 8 Sep 2021 22:47:36 -0400 Subject: [PATCH] Bug fix - the client and server packet counts were not being updated These are shown in the stream reassembly view. The bug caused their values to always be set to 0. --- CHANGELOG.md | 7 +++++++ widgets/streamwidget/streamwidget.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf7803..3169a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [Unreleased] + +### Changed + +- Fixed a bug that caused the "client pkts" and "server pkts" counts in the stream reassembly view not to be + updated. + ## [2.3.0] - 2021-09-04 ### Added diff --git a/widgets/streamwidget/streamwidget.go b/widgets/streamwidget/streamwidget.go index e7ac9fb..59dee3e 100644 --- a/widgets/streamwidget/streamwidget.go +++ b/widgets/streamwidget/streamwidget.go @@ -901,7 +901,7 @@ func (w *Widget) AddChunkEntire(ch streams.IChunk, app gowid.IApp) { w.updateChunkModel(i, w.displayAs, app) } - w.doMenuUpdate = true + w.updateConvMenuWidget(app) w.data.currentChunk++ }