@itutoring/itutoring_application_js_api 1.7.12 → 1.7.13

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 -0
  2. package/package.json +1 -1
package/apiController.js CHANGED
@@ -63,6 +63,8 @@ class APIController
63
63
  CookiesManager.RemoveCookie("session_url");
64
64
 
65
65
  id = urlParams.get("vid");
66
+ const date = new Date();
67
+ date.setTime(date.getTime() + (7 * 24 * 60 * 60 * 1000));
66
68
  CookiesManager.SetCookie("session_url", id, date.toUTCString());
67
69
  }
68
70
  else
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itutoring/itutoring_application_js_api",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "description": "Javascript API for iTutoring Application",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",