capacitor-community-multilens-camerapreview 6.0.18 → 6.1.0
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.
|
@@ -444,7 +444,7 @@ public class CameraPreviewMultiLens extends Plugin implements CameraActivity.Cam
|
|
|
444
444
|
public void setSavePath(String path) {
|
|
445
445
|
JSObject jsObject = new JSObject();
|
|
446
446
|
jsObject.put("value", saveData);
|
|
447
|
-
jsObject.put("webPath", path);
|
|
447
|
+
jsObject.put("webPath", "file://" + path);
|
|
448
448
|
if(fragment.storeToFile){
|
|
449
449
|
bridge.getSavedCall(captureCallbackId).resolve(jsObject);
|
|
450
450
|
}
|
package/package.json
CHANGED