See if the time filter is not applied properly.

This commit is contained in:
Yaro Kasear 2025-04-11 08:16:25 -05:00
parent f8ecb71dd8
commit 299d6e27fa

View file

@ -56,7 +56,7 @@ def analyze_pcap(pcapng_path, start_ts, end_ts, ap_bssid, ap_channel):
cap = pyshark.FileCapture(
pcapng_path,
display_filter=f'time >= {start_ts} && time <= {end_ts}',
display_filter=f'frame.time_epoch >= {start_ts} && frame.time_epoch <= {end_ts}',
use_json=True,
include_raw=False
)