feat: fix missing image

This commit is contained in:
Nevo David 2025-08-01 17:26:47 +07:00
parent e915ec30d7
commit 5a333a06b9
1 changed files with 3 additions and 3 deletions

View File

@ -275,9 +275,9 @@ export class IntegrationsController {
await this._integrationService.insertMentions(
getIntegration.providerIdentifier,
newList.map((p: any) => ({
name: p.label,
username: p.id,
image: p.image,
name: p.label || '',
username: p.id || '',
image: p.image || '',
})).filter((f: any) => f.name)
);
}