bump
Some checks failed
Build and Release / build-and-release (push) Has been cancelled

This commit is contained in:
Bryan1029384756
2026-04-20 17:09:04 -05:00
parent 82f8a12e27
commit b83360db35
48 changed files with 6079 additions and 49 deletions

View File

@@ -71,6 +71,10 @@ export const listAll = query({
const users = await ctx.db.query("userProfiles").collect();
const results = [];
for (const user of users) {
// Ghosts are placeholder profiles for imported messages —
// keep them out of the server-wide member list so they
// don't pollute presence / DM-target / mention pickers.
if (user.isGhost) continue;
let avatarUrl: string | null = null;
if (user.avatarStorageId) {
avatarUrl = await getPublicStorageUrl(ctx, user.avatarStorageId);