From 78a9dea3f5765160182d8f2ca47252d4f5603c48 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Fri, 31 May 2024 11:41:44 +0700 Subject: [PATCH] feat: stringify --- .../nestjs-libraries/src/database/prisma/posts/posts.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/nestjs-libraries/src/database/prisma/posts/posts.service.ts b/libraries/nestjs-libraries/src/database/prisma/posts/posts.service.ts index 941d41dd..6a346f6a 100644 --- a/libraries/nestjs-libraries/src/database/prisma/posts/posts.service.ts +++ b/libraries/nestjs-libraries/src/database/prisma/posts/posts.service.ts @@ -145,7 +145,7 @@ export class PostsService { await this._notificationService.inAppNotification( firstPost.organizationId, `Error posting on ${firstPost.integration?.providerIdentifier} for ${firstPost?.integration?.name}`, - `An error occurred while posting on ${firstPost.integration?.providerIdentifier}`, + `An error occurred while posting on ${firstPost.integration?.providerIdentifier} ${JSON.stringify(err)}`, true ); }