@itutoring/itutoring_application_js_api 1.24.6 → 1.24.7

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
@@ -335,10 +335,10 @@ class APIController
335
335
  if (typeof value === "object" && value instanceof ApiFile)
336
336
  {
337
337
  var index = 0;
338
- var file = value.File
338
+ var file = value;
339
339
  while (file != null)
340
340
  {
341
- fileAttributes[key + "_" + index] = file;
341
+ fileAttributes[key + "_" + index] = file.File;
342
342
  file = file.next;
343
343
  index++;
344
344
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.24.6",
3
+ "version": "1.24.7",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",