Skip to content
Snippets Groups Projects
Commit b7273c90 authored by Satsuki Yanagi's avatar Satsuki Yanagi Committed by syuilo
Browse files

Fix #5128 (#5153)

parent a6f5e230
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ export const meta = {
export default define(meta, async (ps, me) => {
const query = Users.createQueryBuilder('user')
.where(':tag = ANY(user.tags)', { tag: ps.tag });
.where(':tag = ANY(user.tags)', { tag: ps.tag.toLowerCase() });
const recent = new Date(Date.now() - (1000 * 60 * 60 * 24 * 5));
......
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