In my PowerApp, I use a Patch() to update a SharePoint list image column (formatted as picture) with the last submitted attachment URL. This was working until recently. Now, when I submit my form (and the patch executes onSuccess), I receive the error that this column is read-only. This issue broke my patch function, so my SP list now contains a ton of rows with missing data from the last week (all prior form submissions contain patched info).
My Patch() code is below. What happened? Any advise on how to fix this?
Patch(list,
{ID: form.LastSubmit.ID},
{Image_link: First(form.LastSubmit.Attachments).AbsoluteUri}
);