Hey,
I'm wondering if the camera control's photo metadata was changed in the latest releases or maybe broken.
Scenario:
I have a camera control in my PowerApp. When I select it, a photo is taken and set to a local variable and uploaded to a function (Custom Connector).
UpdateContext({ CapturedImage: Camera1.Photo});;
UpdateContext({ ResultValue : ImageUploadAPI.UploadImage(CapturedImage) });;The "CapturedImage" is also used as a source in an image control.
Everything worked fine until today.
Now the upload isn't working anymore (missing metadata like filename, contenttype, ...) and the image control where I used the taken photo as source remains blank.
Is there anything broken in the current release or was there a change made on purpose and I am not reflecting that at the moment?