From 0e5037a7f3cd773eae1619d92aa8969439e00031 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Tue, 9 Dec 2025 21:39:18 +0000 Subject: [PATCH] Update repeater/handler_helpers/trace.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- repeater/handler_helpers/trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repeater/handler_helpers/trace.py b/repeater/handler_helpers/trace.py index 9727aea..3f710b7 100644 --- a/repeater/handler_helpers/trace.py +++ b/repeater/handler_helpers/trace.py @@ -215,7 +215,7 @@ class TraceHelper: """ # Update the packet record to show it will be transmitted if self.repeater_handler and hasattr(self.repeater_handler, 'recent_packets'): - packet_hash = packet.calculate_packet_hash().hex()[:16] + packet_hash = packet.calculate_packet_hash().hex().upper()[:16] for record in reversed(self.repeater_handler.recent_packets): if record.get("packet_hash") == packet_hash: record["transmitted"] = True