From f3389100ae83b036421670690f5ddb88992cb4a1 Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Tue, 27 Feb 2024 14:19:37 -0300 Subject: [PATCH] chore: add error handling to goRoom helper function --- app/lib/methods/helpers/goRoom.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/lib/methods/helpers/goRoom.ts b/app/lib/methods/helpers/goRoom.ts index 006360ff7..a2550db41 100644 --- a/app/lib/methods/helpers/goRoom.ts +++ b/app/lib/methods/helpers/goRoom.ts @@ -4,6 +4,7 @@ import Navigation from '../../navigation/appNavigation'; import { IOmnichannelRoom, SubscriptionType, IVisitor, TSubscriptionModel, ISubscription } from '../../../definitions'; import { getRoomTitle, getUidDirectMessage } from './helpers'; import { Services } from '../../services'; +import { emitErrorCreateDirectMessage } from './emitErrorCreateDirectMessage'; interface IGoRoomItem { search?: boolean; // comes from spotlight @@ -111,8 +112,8 @@ export const goRoom = async ({ ...props }); } - } catch { - // Do nothing + } catch (e: any) { + emitErrorCreateDirectMessage(e?.data); } }