summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/site.clj5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/site.clj b/src/site.clj
index e38171e..1a9cc05 100644
--- a/src/site.clj
+++ b/src/site.clj
@@ -947,11 +947,10 @@ order by count desc limit ? offset ?")
(defn ghetto-search-query [num-tokens]
(str "select
- content from messages, rooms
- where messages.room_id=rooms.room_id
+ content from messages
+ where room_id = 1
and content ilike " (str-join " and content ilike " (take num-tokens (repeat "?"))) "
and content like '%http://%'
- and admin_only = 'f'
order by message_id desc
limit 250;"))