Skip to content

Commit 8a012c9

Browse files
authored
Merge pull request #356 from gautamsi/fixes/v0.10.3
Fixes/v0.10.3
2 parents 561febe + 86aa4a6 commit 8a012c9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ Works with **Office 365/Exchange Online** and on-premises Exchange (2007 - 2016)
6969
> use SSL for basic authentication
7070
NTLM and Cookies Authentication works with nodejs only
7171

72+
> **NTLM** issue with `invalid tagName` gibrish character is due to gzip encoding, see #334.
73+
>
74+
> **Solution** use `gzip: true` in `XhrApi({ gzip: true })` constructor options of `@ewsjs/xhr`.
75+
7276
## Modules
7377
* commonjs module for NodeJs
7478
* AMD module for other scenarios* (not documented yet)

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.2",
3+
"version": "0.10.3",
44
"description": "EWS Managed api in JavaScript",
55
"main": "js/ExchangeWebService.js",
66
"scripts": {

src/js/Core/PropertyBag.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class PropertyBag {
9393
return propertyValue;
9494
}
9595
else {
96-
throw serviceException.exception;
96+
throw serviceException.outValue;
9797
}
9898
}
9999
/**

0 commit comments

Comments
 (0)