Skip to content

Commit

Permalink
core | fix wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
tkorchug committed Nov 20, 2024
1 parent 7c488e4 commit d197077
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 currentParCount < countParameters - 1:
if len(parameter) > 0:

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

0 comments on commit d197077

Please sign in to comment.