Fix typo in sql for full text search on sqlite3

pull/438/head
Mark Haines 2015-12-14 11:38:11 +00:00
parent deeebbfcb7
commit bfc52a2342
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class SearchStore(BackgroundUpdateStore):
count_sql = (
"SELECT room_id, count(*) as count FROM event_search"
" WHERE value MATCH ? AND "
" WHERE value MATCH ?"
)
count_args = [search_term] + count_args
else: