forked from FoundKeyGang/FoundKey
Merge pull request 'backend: fix table name used in toHtml' (#133) from fix/backend-toHtml into main
Reviewed-on: FoundKeyGang/FoundKey#133 Changelog: Fixed
This commit is contained in:
commit
736c21a80a
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