Skip to content

Commit

Permalink
fix(meetings): pass encrypted title based on APPI API for conversation (
Browse files Browse the repository at this point in the history
  • Loading branch information
Neeraj-swarnkar authored Nov 7, 2023
1 parent d0744a5 commit 92c13b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default class MeetingInfoV2 {
};

return this.webex
.request(conversationUrl)
.request({uri: conversationUrl, qs: {includeParticipants: true}, disableTransform: true})
.then(({body: conversation}) => {
const body = {
title: conversation.displayName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ describe('plugin-meetings', () => {

assert.calledWith(
webex.request,
conversationUrl,
{uri:conversationUrl, qs: {includeParticipants: true}, disableTransform: true}
)

assert.calledWith(webex.request, {
Expand Down

0 comments on commit 92c13b6

Please sign in to comment.