From a8615490111ee39d519bc1878222eb38baf4cc8c Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Mon, 25 Nov 2024 15:30:18 -0800 Subject: [PATCH] implementing focus module --- app/sdk/src/focus.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/sdk/src/focus.ts b/app/sdk/src/focus.ts index 73ea2b42..9fed9b76 100644 --- a/app/sdk/src/focus.ts +++ b/app/sdk/src/focus.ts @@ -513,7 +513,7 @@ export class FocusModule implements Focus { } const { node, secure, token } = this.connection if (cardId) { - return await getContactChannelTopicDetail(node, secure, token, cardId, channelId, topicId); + return await getContactChannelTopicDetail(node, secure, token, channelId, topicId); } else { return await getChannelTopicDetail(node, secure, token, channelId, topicId); } @@ -526,7 +526,7 @@ export class FocusModule implements Focus { } const { node, secure, token } = this.connection; if (cardId) { - return await addContactChannelTopic(node, secure, token, cardId, channelId, dataType, data, confirm); + return await addContactChannelTopic(node, secure, token, channelId, dataType, data, confirm); } else { return await addChannelTopic(node, secure, token, channelId, dataType, data, confirm); }