forked from FoundKeyGang/FoundKey
backend: fix table name used in toHtml
This commit is contained in:
parent
058d414fff
commit
c33655bc4f
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ export async function toHtml(mfmText: string, mentions?: string[]): Promise<stri
|
|||
return null;
|
||||
}
|
||||
|
||||
const mentionedUsers = await UserProfiles.createQueryBuilder('user_profiles')
|
||||
const mentionedUsers = await UserProfiles.createQueryBuilder('user_profile')
|
||||
.leftJoin('user_profile.user', 'user')
|
||||
.select('user.username')
|
||||
.addSelect('user.host')
|
||||
|
|
Loading…
Reference in a new issue