From e849732dbcf5e85d1df09835c53ff5738fbb4ded Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Mon, 28 Jun 2021 11:05:48 +0200 Subject: [PATCH] fix(camera): Return the full webPath (#502) --- camera/ios/Plugin/CameraPlugin.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camera/ios/Plugin/CameraPlugin.swift b/camera/ios/Plugin/CameraPlugin.swift index 0578ebcd3..a137413ac 100644 --- a/camera/ios/Plugin/CameraPlugin.swift +++ b/camera/ios/Plugin/CameraPlugin.swift @@ -213,7 +213,7 @@ private extension CameraPlugin { call?.resolve([ "path": fileURL.absoluteString, "exif": processedImage.exifData, - "webPath": webURL.path, + "webPath": webURL.absoluteString, "format": "jpeg" ]) }