From 5a333a06b95245b3fab2b88b7901fe471a984955 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Fri, 1 Aug 2025 17:26:47 +0700 Subject: [PATCH] feat: fix missing image --- apps/backend/src/api/routes/integrations.controller.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/backend/src/api/routes/integrations.controller.ts b/apps/backend/src/api/routes/integrations.controller.ts index 5393f385..da43888a 100644 --- a/apps/backend/src/api/routes/integrations.controller.ts +++ b/apps/backend/src/api/routes/integrations.controller.ts @@ -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) ); }