Skip to content

Commit

Permalink
fix: remove uncecessary line that broke search when searching for exa…
Browse files Browse the repository at this point in the history
…ct name
  • Loading branch information
Computerdores committed Nov 28, 2024
1 parent 7610d39 commit 3669220
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tagstudio/src/core/library/alchemy/visitors.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def visit_constraint(self, node: Constraint) -> ColumnExpressionArgument:
Tag.name.ilike(node.value),
Tag.shorthand.ilike(node.value),
TagAlias.name.ilike(node.value),
aliased(Tag).name.ilike(node.value),
)
elif node.type == ConstraintType.TagID:
return Tag.id == int(node.value)
Expand Down

0 comments on commit 3669220

Please sign in to comment.