]> cat aescling's git repositories - mastodon.git/commit
Fix possible inconsistencies in tag search (#14906)
authorThibG <thib@sitedethib.com>
Thu, 12 Nov 2020 17:35:23 +0000 (18:35 +0100)
committerGitHub <noreply@github.com>
Thu, 12 Nov 2020 17:35:23 +0000 (18:35 +0100)
commit9870b175b477bbc984fc7945f1ebe07e3f2b0053
tree8705307fed3d5de28ade8255c3b985c54637fd19
parent148ce97e21092500a2abeb87f6dc3c0adf5f28e4
Fix possible inconsistencies in tag search (#14906)

Do not downcase the queried tag before passing it to postgres when searching:
- tags are not downcased on creation
- `arel_table[:name].lower.matches(pattern)` generates an ILIKE anyway
- if Postgres and Rails happen to use different case-folding rules,
  downcasing before query but not before insertion may mean that some
  tags with some casings are not searchable
app/models/tag.rb