From bc8c58e57c87c02ae69659f8272c621c06b51342 Mon Sep 17 00:00:00 2001 From: nicolas Date: Sun, 13 Jun 2021 16:07:41 +0200 Subject: [PATCH] Fixed integration identifier --- lib/videoClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/videoClient.ts b/lib/videoClient.ts index 6d5b149b..811a67d5 100644 --- a/lib/videoClient.ts +++ b/lib/videoClient.ts @@ -165,7 +165,7 @@ const ZoomVideo = (credential): VideoApiAdapter => { // factory const videoIntegrations = (withCredentials): VideoApiAdapter[] => withCredentials.map((cred) => { switch (cred.type) { - case 'zoom': + case 'zoom_video': return ZoomVideo(cred); default: return; // unknown credential, could be legacy? In any case, ignore