@chat21/chat21-ionic 3.4.27-ar1 → 3.4.27-ar3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.4.27-ar1",
4
+ "version": "3.4.27-ar3",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -114,6 +114,7 @@ export class GlobalSettingsService {
114
114
  console.log('TEMP supportMode', TEMP);
115
115
  if (TEMP) {
116
116
  globals.supportMode = stringToBoolean(TEMP);
117
+ this.appStorageService.setItem('supportMode', String(globals.supportMode))
117
118
  console.log('globals.supportMode', globals.supportMode);
118
119
  }
119
120
 
@@ -140,6 +141,7 @@ export class GlobalSettingsService {
140
141
  TEMP = getParameterByName(windowContext, 'tiledesk_projectID');
141
142
  if (TEMP) {
142
143
  globals.projectID = TEMP;
144
+ this.appStorageService.setItem('projectID', TEMP)
143
145
  }
144
146
 
145
147
  }