@itutoring/itutoring_application_js_api 1.24.5 → 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 +3 -3
- package/package.json +1 -1
package/apiController.js
CHANGED
|
@@ -334,11 +334,11 @@ class APIController
|
|
|
334
334
|
{
|
|
335
335
|
if (typeof value === "object" && value instanceof ApiFile)
|
|
336
336
|
{
|
|
337
|
-
|
|
338
|
-
var file = value
|
|
337
|
+
var index = 0;
|
|
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
|
}
|