From 4315b21d25058cafbb9825590a491215ffb8f091 Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 6 Oct 2022 10:26:23 +0800 Subject: [PATCH] Fixed note copy --- ghost/core/core/server/services/webhooks/serialize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/core/core/server/services/webhooks/serialize.js b/ghost/core/core/server/services/webhooks/serialize.js index 794e41c329..e5f86288ee 100644 --- a/ghost/core/core/server/services/webhooks/serialize.js +++ b/ghost/core/core/server/services/webhooks/serialize.js @@ -13,7 +13,7 @@ module.exports = (event, model) => { ops.push(() => { let frame = {options: {previous: false, context: {user: true}}}; - // NOTE: below options are lost in the during event processing, a more holistic approach would be + // @NOTE: below options are lost during event processing, a more holistic approach would be // to pass them somehow along with the model if (['posts', 'pages'].includes(docName)) { frame.options.formats = ['mobiledoc', 'html', 'plaintext'];