0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 06:22:43 +00:00

Merge pull request #4272 from naturalcrit/RemoveTextBinFromSaveResponse

Don't send full text back to client on save
This commit is contained in:
Trevor Buckner
2025-06-24 17:45:40 -04:00
committed by GitHub

View File

@@ -412,6 +412,8 @@ const api = {
const after = await afterSave();
if(!after) return;
saved.textBin = undefined; // Remove textBin from the saved object to save bandwidth
res.status(200).send(saved);
},
deleteGoogleBrew : async (account, id, editId, res)=>{