diff --git a/src/server/api/endpoints/hashtags/trend.ts b/src/server/api/endpoints/hashtags/trend.ts index 3ad143aaf..91fbd2f9f 100644 --- a/src/server/api/endpoints/hashtags/trend.ts +++ b/src/server/api/endpoints/hashtags/trend.ts @@ -67,7 +67,7 @@ module.exports = () => new Promise(async (res, rej) => { } }) as any).length; - if (passedCount > (tag.count * coefficient)) { + if (tag.count > (passedCount * coefficient)) { return tag; } else { return null;