06-Jul-2026 — Pasting an image into content saves reliably again

build 747commit 0bc3987


Pasting an image into the cropper and saving produced a 500 that returned an HTML error page, which the upload response handler then tried to JSON.parse ("Unexpected token '<'"), crashing the editor.

Root cause: a pasted image arrives as a base64 data URL that becomes the column imageSource / preloadImage. The cropper built the upload File with its name set to that entire data URL, so the multipart part header was ~870KB and multer/busboy rejected it, yielding Express's default 500 HTML page.