Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions module/descriptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
by Bastian Schroll

@file: descriptor.py
@date: 03.12.2025
@date: 01.07.2026
@author: Bastian Schroll
@description: Module to add descriptions to bwPackets with CSV and Regex support
"""
Expand Down Expand Up @@ -207,7 +207,7 @@ def doWork(self, bwPacket):
# Search for matching description in unified cache
description = self._find_description(descriptor_key, scan_value, bwPacket)

if description:
if description is not None:
bwPacket.set(descr_field, description)
logging.info("Description set: '%s' -> '%s'", scan_value, description)
else:
Expand Down
Loading