@itutoring/itutoring_application_js_api 1.6.34 → 1.6.35

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/apiController.js +2 -2
  2. package/package.json +1 -1
package/apiController.js CHANGED
@@ -178,7 +178,7 @@ class APIController
178
178
  {
179
179
  APICache.Cache(module + method + cacheSuffix, response);
180
180
  }
181
- if (response['conf_request'] !== undefined)
181
+ if (response != null && response['conf_request'] !== undefined)
182
182
  APIController.LastCall = {
183
183
  "type": "GET",
184
184
  "module": module,
@@ -245,7 +245,7 @@ class APIController
245
245
  APICache.Cache(module + method, response);
246
246
  }
247
247
 
248
- if (response['conf_request'] !== undefined)
248
+ if (response != null && response['conf_request'] !== undefined)
249
249
  APIController.LastCall = {
250
250
  "type": "POST",
251
251
  "module": module,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.6.34",
3
+ "version": "1.6.35",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",