camstreamerlib 4.0.0-beta.5 → 4.0.0-beta.6
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/cjs/VapixAPI.js +1 -1
- package/esm/VapixAPI.js +1 -1
- package/package.json +1 -1
package/cjs/VapixAPI.js
CHANGED
|
@@ -403,7 +403,7 @@ const parseParameters = (response) => {
|
|
|
403
403
|
}
|
|
404
404
|
const delimiterPos = line.indexOf('=');
|
|
405
405
|
if (delimiterPos !== -1) {
|
|
406
|
-
const paramName = line.substring(0, delimiterPos);
|
|
406
|
+
const paramName = line.substring(0, delimiterPos).replace('root.', '');
|
|
407
407
|
const paramValue = line.substring(delimiterPos + 1);
|
|
408
408
|
params[paramName] = paramValue;
|
|
409
409
|
}
|
package/esm/VapixAPI.js
CHANGED
|
@@ -399,7 +399,7 @@ const parseParameters = (response) => {
|
|
|
399
399
|
}
|
|
400
400
|
const delimiterPos = line.indexOf('=');
|
|
401
401
|
if (delimiterPos !== -1) {
|
|
402
|
-
const paramName = line.substring(0, delimiterPos);
|
|
402
|
+
const paramName = line.substring(0, delimiterPos).replace('root.', '');
|
|
403
403
|
const paramValue = line.substring(delimiterPos + 1);
|
|
404
404
|
params[paramName] = paramValue;
|
|
405
405
|
}
|