From 53c51feca292a5cef6073659408c7aec62eceb95 Mon Sep 17 00:00:00 2001 From: Sumukha Hegde Date: Mon, 4 Jan 2021 19:04:29 +0530 Subject: [PATCH] [FIX] Generate Jitsi access token when making a call (#2694) fixes: #2693 # Please enter the commit message for your changes. Lines starting Co-authored-by: Diego Mello --- app/sagas/deepLinking.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/sagas/deepLinking.js b/app/sagas/deepLinking.js index 4e30ddfe..caf2a46f 100644 --- a/app/sagas/deepLinking.js +++ b/app/sagas/deepLinking.js @@ -15,7 +15,6 @@ import { } from '../actions/app'; import { localAuthenticate } from '../utils/localAuthentication'; import { goRoom } from '../utils/goRoom'; -import callJitsi from '../lib/methods/callJitsi'; const roomTypes = { channel: 'c', direct: 'd', group: 'p', channels: 'l' @@ -54,7 +53,7 @@ const navigate = function* navigate({ params }) { yield goRoom({ item, isMasterDetail }); if (params.isCall) { - callJitsi(item.rid); + RocketChat.callJitsi(item.rid); } } } else {