Skip to content

Commit ff9177d

Browse files
authored
Merge pull request #345 from gautamsi/fix/find-conversation-bug
fix apply conversation action bug
2 parents 478589e + c3d9e36 commit ff9177d

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

package-lock.json

Lines changed: 13 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ews-javascript-api",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "EWS Managed api in JavaScript",
55
"main": "js/ExchangeWebService.js",
66
"scripts": {

src/js/Core/ExchangeService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2564,9 +2564,9 @@ export class ExchangeService extends ExchangeServiceBase {
25642564
"ApplyConversationAction");
25652565

25662566
let request: ApplyConversationActionRequest = new ApplyConversationActionRequest(this, errorHandlingMode);
2567-
let action: ConversationAction = new ConversationAction();
2568-
2567+
25692568
for (let conversationId of conversationIds) {
2569+
const action: ConversationAction = new ConversationAction();
25702570
action.Action = actionType;
25712571
action.ConversationId = conversationId;
25722572
action.ProcessRightAway = processRightAway;

0 commit comments

Comments
 (0)