@ardimedia/angular-portal-azure 0.2.254 → 0.2.255

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/apn.js +6 -1
  2. package/package.json +1 -1
package/apn.js CHANGED
@@ -1434,7 +1434,12 @@ var angularportalazure;
1434
1434
  }
1435
1435
  if (exception.ExceptionMessage !== undefined && exception.ExceptionMessage.toLowerCase().indexOf('see the inner exception for details') > 0) {
1436
1436
  if (exception.InnerException !== undefined) {
1437
- message = message + ': ' + exception.InnerException.ExceptionMessage + ' ';
1437
+ if (exception.InnerException.InnerException !== undefined) {
1438
+ message = message + ': ' + exception.InnerException.InnerException.ExceptionMessage + ' ';
1439
+ }
1440
+ else {
1441
+ message = message + ': ' + exception.InnerException.ExceptionMessage + ' ';
1442
+ }
1438
1443
  }
1439
1444
  }
1440
1445
  if (exception.Messages !== undefined) {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@ardimedia/angular-portal-azure",
3
3
  "description": "Angular Portal Azure - GUI Framework.",
4
4
  "author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
5
- "version": "0.2.254",
5
+ "version": "0.2.255",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {