summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts/gen-search-query.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/scripts/gen-search-query.ts')
-rw-r--r--packages/client/src/scripts/gen-search-query.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/scripts/gen-search-query.ts b/packages/client/src/scripts/gen-search-query.ts
index b413cbbab1..da7d622632 100644
--- a/packages/client/src/scripts/gen-search-query.ts
+++ b/packages/client/src/scripts/gen-search-query.ts
@@ -25,6 +25,6 @@ export async function genSearchQuery(v: any, q: string) {
return {
query: q.split(' ').filter(x => !x.startsWith('/') && !x.startsWith('@')).join(' '),
host: host,
- userId: userId
+ userId: userId,
};
}