From 7d9734318a0a1b3342ae44f0912d20b2fda3a8e9 Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Thu, 2 May 2024 19:36:04 -0500 Subject: [PATCH] fixup console log of batch post id --- backend/src/event-handlers/rollup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/event-handlers/rollup.js b/backend/src/event-handlers/rollup.js index 2fbfc3e..820c713 100644 --- a/backend/src/event-handlers/rollup.js +++ b/backend/src/event-handlers/rollup.js @@ -222,7 +222,7 @@ const start = async () => { return false; } const valid = authorsMatch(post.authors, expectedAuthors); - console.log(`batch post ${pool.postId} is ${valid ? 'valid' : 'invalid'}`); + console.log(`batch post ${pool.props.postId} is ${valid ? 'valid' : 'invalid'}`); return valid; });