Skip to content
Snippets Groups Projects
Unverified Commit 1652c8c1 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Merge pull request #6268 from matrix-org/erikj/case_insensitive_room_dir

Make room directory search case insensitive
parents c482d458 9d8dc85d
No related branches found
No related tags found
No related merge requests found
Fix bug where room directory search was case sensitive.
...@@ -201,13 +201,17 @@ class RoomWorkerStore(SQLBaseStore): ...@@ -201,13 +201,17 @@ class RoomWorkerStore(SQLBaseStore):
where_clauses.append( where_clauses.append(
""" """
( (
name LIKE ? LOWER(name) LIKE ?
OR topic LIKE ? OR LOWER(topic) LIKE ?
OR canonical_alias LIKE ? OR LOWER(canonical_alias) LIKE ?
) )
""" """
) )
query_args += [search_term, search_term, search_term] query_args += [
search_term.lower(),
search_term.lower(),
search_term.lower(),
]
where_clause = "" where_clause = ""
if where_clauses: if where_clauses:
......
...@@ -114,7 +114,7 @@ skip_install = True ...@@ -114,7 +114,7 @@ skip_install = True
basepython = python3.6 basepython = python3.6
deps = deps =
flake8 flake8
black black==19.3b0 # We pin so that our tests don't start failing on new releases of black.
commands = commands =
python -m black --check --diff . python -m black --check --diff .
/bin/sh -c "flake8 synapse tests scripts scripts-dev scripts/hash_password scripts/register_new_matrix_user scripts/synapse_port_db synctl {env:PEP8SUFFIX:}" /bin/sh -c "flake8 synapse tests scripts scripts-dev scripts/hash_password scripts/register_new_matrix_user scripts/synapse_port_db synctl {env:PEP8SUFFIX:}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment