@itutoring/itutoring_application_js_api 1.3.7 → 1.3.9
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/package.json +1 -1
- package/toolkit/Toolkit.jsx +2 -2
package/package.json
CHANGED
package/toolkit/Toolkit.jsx
CHANGED
|
@@ -14,7 +14,7 @@ class Toolkit
|
|
|
14
14
|
{
|
|
15
15
|
this.ModuleInfo = await this.GetModuleProperties(moduleUid);
|
|
16
16
|
|
|
17
|
-
await this.RequestAccess();
|
|
17
|
+
await this.RequestAccess(moduleUid);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/***** API Methods ******/
|
|
@@ -44,7 +44,7 @@ class Toolkit
|
|
|
44
44
|
'uid': moduleUid
|
|
45
45
|
});
|
|
46
46
|
|
|
47
|
-
this.CheckForError(
|
|
47
|
+
this.CheckForError(info);
|
|
48
48
|
|
|
49
49
|
return JSON.parse(info);
|
|
50
50
|
}
|