camstreamerlib 4.0.26-4e8a7fa → 4.0.26-b58d309

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.
@@ -281,7 +281,7 @@ class CamSwitcherAPI extends BasicAPI_1.BasicAPI {
281
281
  }
282
282
  catch {
283
283
  try {
284
- return JSON.parse(decodeURIComponent((data[paramName] + '').replaceAll('\\', '')));
284
+ return JSON.parse(decodeURIComponent(data[paramName] + ''));
285
285
  }
286
286
  catch (e) {
287
287
  throw new errors_1.JsonParseError(paramName, data[paramName]);
@@ -278,7 +278,7 @@ export class CamSwitcherAPI extends BasicAPI {
278
278
  }
279
279
  catch {
280
280
  try {
281
- return JSON.parse(decodeURIComponent((data[paramName] + '').replaceAll('\\', '')));
281
+ return JSON.parse(decodeURIComponent(data[paramName] + ''));
282
282
  }
283
283
  catch (e) {
284
284
  throw new JsonParseError(paramName, data[paramName]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camstreamerlib",
3
- "version": "4.0.26-4e8a7fa",
3
+ "version": "4.0.26-b58d309",
4
4
  "description": "Helper library for CamStreamer ACAP applications.",
5
5
  "prettier": "@camstreamer/prettier-config",
6
6
  "engine": {