Skip to content

Commit

Permalink
fix(ca): typo (#3892)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisadubois authored Oct 8, 2024
1 parent cd5a086 commit ad8d241
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@webex/plugin-meetings/src/meeting/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,7 @@ export default class Meeting extends StatelessWebexPlugin {
* @returns {string}
*/
get sessionCorrelationId() {
return this.callStateForMetrics.correlationId;
return this.callStateForMetrics.sessionCorrelationId;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ describe('plugin-meetings', () => {
}
);
assert.exists(newMeeting.sessionCorrelationId);
assert.equal(newMeeting.sessionCorrelationId, uuid1);
assert.deepEqual(newMeeting.callStateForMetrics, {
correlationId: uuid4,
sessionCorrelationId: uuid1,
Expand Down

0 comments on commit ad8d241

Please sign in to comment.