fixed typo in comparison by build of stream from filter options (see #4066)

This commit is contained in:
sebres
2025-10-28 21:34:00 +01:00
parent 7bac839603
commit 3f78f1520b

View File

@@ -89,7 +89,7 @@ class FilterReader(DefinitionInitConfigReader):
stream.insert(0 if opt == 'usedns' else prio0idx,
["set", jailName, opt, value])
prio0idx += 1
elif opt in ('datepattern'):
elif opt == 'datepattern':
stream.append(["set", jailName, opt, value])
elif opt == 'journalmatch':
for match in value.split("\n"):