From d23b7525a41e409d94395f86e10e42ec4d325e8b Mon Sep 17 00:00:00 2001 From: Kevin Ansfield Date: Wed, 25 May 2022 14:27:05 +0100 Subject: [PATCH] Removed `post.email` from serialization when saving posts closes https://github.com/TryGhost/Team/issues/1647 - sending the embedded `email` record back to the API when saving could trigger "Request entity too large" errors for very large posts that were sent as email because it doubles up on the request size - `post.email` is a read-only property and is ignored by the API so there's no point serializing it and making request bodies larger than they need to be --- ghost/admin/app/serializers/post.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/admin/app/serializers/post.js b/ghost/admin/app/serializers/post.js index 5764df7d2c..57181c3f13 100644 --- a/ghost/admin/app/serializers/post.js +++ b/ghost/admin/app/serializers/post.js @@ -24,6 +24,7 @@ export default class PostSerializer extends ApplicationSerializer.extend(Embedde delete json.url; delete json.send_email_when_published; delete json.email_recipient_filter; + delete json.email; delete json.newsletter; // Deprecated property (replaced with data.authors) delete json.author;