Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes/v0.10.3 #356

Merged
merged 3 commits into from
Jun 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ Works with **Office 365/Exchange Online** and on-premises Exchange (2007 - 2016)
> use SSL for basic authentication
NTLM and Cookies Authentication works with nodejs only

> **NTLM** issue with `invalid tagName` gibrish character is due to gzip encoding, see #334.
>
> **Solution** use `gzip: true` in `XhrApi({ gzip: true })` constructor options of `@ewsjs/xhr`.

## Modules
* commonjs module for NodeJs
* AMD module for other scenarios* (not documented yet)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ews-javascript-api",
"version": "0.10.2",
"version": "0.10.3",
"description": "EWS Managed api in JavaScript",
"main": "js/ExchangeWebService.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/Core/PropertyBag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class PropertyBag {
return propertyValue;
}
else {
throw serviceException.exception;
throw serviceException.outValue;
}
}
/**
Expand Down