Hey LA0 thanks for the great reply,
Thanks I'll see if I can bump that default higher.
As for file extensions, user's are forced to submit .jpg files, which is not on the blocked list I believe.
On Add Picture control:
Collect(_colPhotoAttatchments,{DisplayName:"Location_"&Package_1.Value& "_Incident_"& Incident_Type_2.Value & "_" & Location_Incident.Value & "_" &Text(Now(), "[$-en-US]dd.mm.yyyy.hh.mm.ss") & "_Incident_"& _varCounter &".jpg", Id: GUID() & ".jpg", Value: _varPhoto });
UpdateContext({_varCounter: _varCounter + 1});
Then on success of the form, I patch the photo collection to the rows attachments.
On Form Success:
Patch(Location_Definitions_IncidentInspections, LookUp(Location_Definitions_IncidentInspections, Location_Incident_ID = _varIncidentID And Name = Name), {Attachments: _colPhotoAttatchments});
Which normally goes to notes. But checked Notes, and nothing came through from the user from this specific incident. Just sucks because the form submission was successful but it didn't patch all the photos in.
Also the user used this app on their phone, so 'Optimize image for upload' was on so a photo submission which almost always comes through a bit below 300kb an image.