From b4218a12637b29f09b0af6c968b0a33dc7cbc211 Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Tue, 27 Feb 2024 14:20:10 -0300 Subject: [PATCH] chore: add error handling for creating direct messages --- app/views/RoomMembersView/helpers.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/RoomMembersView/helpers.ts b/app/views/RoomMembersView/helpers.ts index 973ef395f..9038bae7d 100644 --- a/app/views/RoomMembersView/helpers.ts +++ b/app/views/RoomMembersView/helpers.ts @@ -11,6 +11,7 @@ import appNavigation from '../../lib/navigation/appNavigation'; import { Services } from '../../lib/services'; import database from '../../lib/database'; import { RoomTypes } from '../../lib/methods'; +import { emitErrorCreateDirectMessage } from '../../lib/methods/helpers/emitErrorCreateDirectMessage'; export type TRoomType = SubscriptionType.CHANNEL | SubscriptionType.GROUP | SubscriptionType.OMNICHANNEL; @@ -89,8 +90,8 @@ export const navToDirectMessage = async (item: IUser, isMasterDetail: boolean): handleGoRoom({ rid: result.room?._id as string, name: item.username, t: SubscriptionType.DIRECT }, isMasterDetail); } } - } catch (e) { - log(e); + } catch (e: any) { + emitErrorCreateDirectMessage(e?.data); } };