@open-charging-cloud/chargy-core 0.6.3 → 0.6.4

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/README.md CHANGED
@@ -101,7 +101,7 @@ npx playwright install chromium
101
101
 
102
102
 
103
103
  ```bash
104
- npm version 0.6.3 --no-git-tag-version
104
+ npm version 0.6.4 --no-git-tag-version
105
105
  npm run verify
106
106
  npm pack --dry-run
107
107
  npm pack
@@ -18237,13 +18237,10 @@ var Chargy = class {
18237
18237
  }
18238
18238
  return this.CompleteMultilanguageText(parameterizedText, Text.replace("%p", String(Parameter)));
18239
18239
  }
18240
- getLocalizedText(data) {
18240
+ GetLocalizedText(data) {
18241
18241
  if (data == null)
18242
18242
  return void 0;
18243
- const bestLanguage = this.FindBestMultilanguageText(data);
18244
- if (bestLanguage == null)
18245
- return void 0;
18246
- return data[bestLanguage];
18243
+ return this.FindBestMultilanguageText(data);
18247
18244
  }
18248
18245
  //#endregion
18249
18246
  //#region GetDevices...