parent
c55b68982a
commit
9ec3a1d256
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ export const meta = {
|
||||||
|
|
||||||
export default define(meta, async (ps, me) => {
|
export default define(meta, async (ps, me) => {
|
||||||
const query = Users.createQueryBuilder('user')
|
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));
|
const recent = new Date(Date.now() - (1000 * 60 * 60 * 24 * 5));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue