@itutoring/itutoring_application_js_api 1.24.4 → 1.24.6

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.
package/apiController.js CHANGED
@@ -334,7 +334,7 @@ class APIController
334
334
  {
335
335
  if (typeof value === "object" && value instanceof ApiFile)
336
336
  {
337
- let index = 0;
337
+ var index = 0;
338
338
  var file = value.File
339
339
  while (file != null)
340
340
  {
@@ -28,8 +28,9 @@ export default class ApiFile
28
28
  let current = this;
29
29
  for (let i = 1; i < files.length; i++)
30
30
  {
31
- current.next = new ApiFile(files[i]);
31
+ current.next = new ApiFile(null);
32
32
  current = current.next;
33
+ current.File = files[i];
33
34
  }
34
35
  }
35
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.24.4",
3
+ "version": "1.24.6",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",