@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.
- package/apiController.js +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
|
|
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
|
}
|