Skip to content

Commit

Permalink
core | fix wildcards if no actual str specified, just *
Browse files Browse the repository at this point in the history
  • Loading branch information
tkorchug committed Nov 19, 2024
1 parent 6318a36 commit 7c488e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/libs/sqlcustom.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def preprocess_wild_card_string(strToProcess, fieldToLookAt, **kwargs):
for parameter in cardParametersRaw:
leadStar = False
trailStar = False
if len(parameter) > 0:
if currentParCount < countParameters - 1:

if currentParCount - 1 >= 0:
leadStar = True
Expand Down

0 comments on commit 7c488e4

Please sign in to comment.