diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-15 02:09:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 02:09:58 +0100 |
commit | 8c3c6dcae99c7ce9da7d54adbf7171c8ed8515e9 (patch) | |
tree | 633250440ad861cd876615f3dd68e32e2b96b9fe /streaming | |
parent | 4415dd6036f85c29631956c4468bb5b1f2b6fd40 (diff) |
Fix filters from other users being used in the streaming service (#20719)
Diffstat (limited to 'streaming')
-rw-r--r-- | streaming/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/index.js b/streaming/index.js index f8857ae53..34bf1d1fc 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -682,7 +682,7 @@ const startWorker = async (workerId) => { } if (!unpackedPayload.filtered && !req.cachedFilters) { - queries.push(client.query('SELECT filter.id AS id, filter.phrase AS title, filter.context AS context, filter.expires_at AS expires_at, filter.action AS filter_action, keyword.keyword AS keyword, keyword.whole_word AS whole_word FROM custom_filter_keywords keyword JOIN custom_filters filter ON keyword.custom_filter_id = filter.id WHERE filter.account_id = $1 AND filter.expires_at IS NULL OR filter.expires_at > NOW()', [req.accountId])); + queries.push(client.query('SELECT filter.id AS id, filter.phrase AS title, filter.context AS context, filter.expires_at AS expires_at, filter.action AS filter_action, keyword.keyword AS keyword, keyword.whole_word AS whole_word FROM custom_filter_keywords keyword JOIN custom_filters filter ON keyword.custom_filter_id = filter.id WHERE filter.account_id = $1 AND (filter.expires_at IS NULL OR filter.expires_at > NOW())', [req.accountId])); } Promise.all(queries).then(values => { |