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
pass encrypted title based on APPI API for conversation
  • Loading branch information
Neeraj-swarnkar committed Oct 26, 2023
1 parent e27c00a commit 8eb0aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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(conversationUrl, {disableTransform: true})
.then(({body: conversation}) => {
const body = {
title: conversation.displayName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ describe('plugin-meetings', () => {
assert.calledWith(
webex.request,
conversationUrl,
{disableTransform: true}
)

assert.calledWith(webex.request, {
Expand Down

0 comments on commit 8eb0aef

Please sign in to comment.